summaryrefslogtreecommitdiffstats
path: root/src/datasets
diff options
context:
space:
mode:
authorKore Nordmann <github@kore-nordmann.de>2006-05-08 07:38:24 +0000
committerKore Nordmann <github@kore-nordmann.de>2006-05-08 07:38:24 +0000
commit2ec481fc479ba898c9b4506cdeb9450887a3fa57 (patch)
treedc859b95781e71e5f529149b27b44e6a516e99f3 /src/datasets
parent6207fc1ece307264f8e9e877edfade373f6da1f3 (diff)
downloadzetacomponents-graph-2ec481fc479ba898c9b4506cdeb9450887a3fa57.zip
zetacomponents-graph-2ec481fc479ba898c9b4506cdeb9450887a3fa57.tar.gz
- Added class stubs for ezcGraph
Diffstat (limited to 'src/datasets')
-rw-r--r--src/datasets/average.php19
-rw-r--r--src/datasets/base.php43
2 files changed, 62 insertions, 0 deletions
diff --git a/src/datasets/average.php b/src/datasets/average.php
new file mode 100644
index 0000000..24705c6
--- /dev/null
+++ b/src/datasets/average.php
@@ -0,0 +1,19 @@
+<?php
+/**
+ * File containing the abstract ezcDatasetAverage 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
+ */
+/**
+ * Extension of basic dataset to represent averation.
+ *
+ * @package Graph
+ */
+class ezcDatasetAverage extends ezcDataset
+{
+
+}
+?>
diff --git a/src/datasets/base.php b/src/datasets/base.php
new file mode 100644
index 0000000..5af66f8
--- /dev/null
+++ b/src/datasets/base.php
@@ -0,0 +1,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