summaryrefslogtreecommitdiffstats
path: root/src/datasets/base.php
blob: 5af66f88ac91f356462cde58c7f4b6626578cdb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/**
 * File containing the abstract ezcGraphDataset class
 *
 * @package Graph
 * @version $id$
 * @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
 * @license http://ez.no/licenses/new_bsd New BSD License
 */
/**
 * Basic class to contain the charts data
 *
 * @package Graph
 */
class eczGraphDataset extends ezcBaseConfig
{

    /**
     * setData 
     * 
     * @param array $data 
     * @access public
     * @return void
     */
    public function setData( $data = array() ) 
    {
        
    }

    /**
     * addData 
     * 
     * @param array $data 
     * @access public
     * @return void
     */
    public function addData( $data = array() ) 
    {
        
    }
}

?>
OpenPOWER on IntegriCloud