source: trunk/workflow/inc/local/classes/class.wf_phplot.php @ 795

Revision 795, 813 bytes checked in by viani, 15 years ago (diff)

Ticket #488 - Inclusão do módulo workflow no ramo trunk do repositório Expresso.

Line 
1<?php
2require_once(PHPGW_SERVER_ROOT.SEP.'workflow'.SEP.'inc'.SEP.'phplot'.SEP.'phplot.php');
3require_once(PHPGW_SERVER_ROOT.SEP.'workflow'.SEP.'inc'.SEP.'phplot'.SEP.'phplot_data.php');
4require_once(PHPGW_SERVER_ROOT.SEP.'workflow'.SEP.'inc'.SEP.'phplot'.SEP.'rgb.inc.php');
5
6/**
7 * Classe para geração de gráficos dinâmicos.
8 * @license http://www.gnu.org/copyleft/gpl.html GPL
9 * @author Allan Bomfim
10 * @author Sidnei Augusto Drovetto Jr. - drovetto@gmail.com (revisão)
11 * @package Workflow
12 * @subpackage local
13 */
14class wf_phplot extends PHPlot
15{
16        /**
17         * Construtor da classe wf_phplot
18         * @param int $width Largura da imagem.
19         * @param int $height Altura da imagem.
20         * @return object
21         * @access public
22         */
23        function wf_phplot($width = 800, $height = 600)
24        {
25                parent::PHPlot($width, $height);
26        }
27}
28?>
Note: See TracBrowser for help on using the repository browser.