diff options
Diffstat (limited to 'src/graph.php')
-rw-r--r-- | src/graph.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/graph.php b/src/graph.php new file mode 100644 index 0000000..50425bb --- /dev/null +++ b/src/graph.php @@ -0,0 +1,32 @@ +<?php +/** + * File containing the abstract ezcGraph 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 + */ +/** + * Base options class for all eZ components. + * + * @package Graph + */ +class ezcGraph extends ezcBaseOptions +{ + + /** + * Creates a graph chart instance + * + * @param mixed $type + * @static + * @access public + * @return void + */ + static public function create( $type, $options = array() ) + { + + } +} + +?> |