summaryrefslogtreecommitdiff
path: root/app/frontend/controls/grid/GridElement.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/frontend/controls/grid/GridElement.php')
-rw-r--r--app/frontend/controls/grid/GridElement.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/frontend/controls/grid/GridElement.php b/app/frontend/controls/grid/GridElement.php
new file mode 100644
index 0000000..3628d4b
--- /dev/null
+++ b/app/frontend/controls/grid/GridElement.php
@@ -0,0 +1,17 @@
+<?php
+
+Prado::using('Application.components.TemplateControl');
+
+class GridElement extends TemplateControl {
+
+ public function setData($data) {
+ $this->setControlState('Data', $data);
+ }
+
+ public function getData() {
+ return $this->getControlState('Data');
+ }
+
+}
+
+?>