aboutsummaryrefslogtreecommitdiff
path: root/app/class/controllertimeline.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/class/controllertimeline.php')
-rw-r--r--app/class/controllertimeline.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/app/class/controllertimeline.php b/app/class/controllertimeline.php
new file mode 100644
index 0000000..5f80fc2
--- /dev/null
+++ b/app/class/controllertimeline.php
@@ -0,0 +1,26 @@
+<?php
+
+class Controllertimeline extends Controller
+{
+ /**@var Modeltimeline */
+ protected $eventmanager;
+
+ public function __construct($render) {
+ parent::__construct($render);
+ $this->eventmanager = new Modeltimeline;
+ }
+
+ public function desktop()
+ {
+ var_dump($this->eventmanager->list());
+ }
+}
+
+
+
+
+
+
+
+
+?> \ No newline at end of file