diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2019-01-12 15:52:55 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2019-01-12 19:51:41 +0100 |
commit | 36d878ac00f4df0a4ff54e2ea8355b323f0a87f3 (patch) | |
tree | 7f0cc2f2337764618ab43f6cd59e49f4c1ac9c89 /app/class/modeltimeline.php | |
parent | 393709dcf84776c760146722560816172167fe98 (diff) | |
download | wcms-36d878ac00f4df0a4ff54e2ea8355b323f0a87f3.tar.gz wcms-36d878ac00f4df0a4ff54e2ea8355b323f0a87f3.zip |
add timeline class and event class
Diffstat (limited to 'app/class/modeltimeline.php')
-rw-r--r-- | app/class/modeltimeline.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/class/modeltimeline.php b/app/class/modeltimeline.php new file mode 100644 index 0000000..fd9126e --- /dev/null +++ b/app/class/modeltimeline.php @@ -0,0 +1,14 @@ +<?php + +class Modeltimeline extends Modeldb +{ + + public function __construct() + { + parent::__construct(); + $this->storeinit('timeline'); + } +} + + +?>
\ No newline at end of file |