aboutsummaryrefslogtreecommitdiff
path: root/app/class/model.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/class/model.php')
-rw-r--r--app/class/model.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/class/model.php b/app/class/model.php
index c8f251f..9bc5c67 100644
--- a/app/class/model.php
+++ b/app/class/model.php
@@ -27,8 +27,11 @@ abstract class Model
const PASSWORD_MAX_LENGTH = 32;
/** RENDER OPTIONS */
+ // add class in html element indicating from witch page the content come.
const RENDER_CLASS_ORIGIN = false;
- const RENDER_EMPTY_ELEMENT = false;
+ // render empty CONTENT element as empty html element, if set to false, render html comment
+ const RENDER_EMPTY_ELEMENT = false;
+
/** CONFIG OPTIONS */
const HOMEPAGE = ['default', 'search', 'redirect'];