diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-05-08 07:38:24 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-05-08 07:38:24 +0000 |
commit | 2ec481fc479ba898c9b4506cdeb9450887a3fa57 (patch) | |
tree | dc859b95781e71e5f529149b27b44e6a516e99f3 /src/graph.php | |
parent | 6207fc1ece307264f8e9e877edfade373f6da1f3 (diff) | |
download | zetacomponents-graph-2ec481fc479ba898c9b4506cdeb9450887a3fa57.zip zetacomponents-graph-2ec481fc479ba898c9b4506cdeb9450887a3fa57.tar.gz |
- Added class stubs for ezcGraph
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() ) + { + + } +} + +?> |