diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-04-26 15:41:48 +0200 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-04-26 15:41:48 +0200 |
commit | 53e6d5fde32a917718a0658fb95f366dc7dfc248 (patch) | |
tree | 6510be3ee713a444a477aef8faf60a62fb47b165 /app/class/Model.php | |
parent | 0efeef6b6693d62675ec8a45e73c71f69e0a0362 (diff) | |
download | wcms-53e6d5fde32a917718a0658fb95f366dc7dfc248.tar.gz wcms-53e6d5fde32a917718a0658fb95f366dc7dfc248.zip |
user bookmarks use new object
+ shortcuts visible in backtopbar
Diffstat (limited to 'app/class/Model.php')
-rw-r--r-- | app/class/Model.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/class/Model.php b/app/class/Model.php index 692257a..7e891f1 100644 --- a/app/class/Model.php +++ b/app/class/Model.php @@ -80,6 +80,12 @@ abstract class Model '' => 'other' ]; + public const BOOKMARK_ICONS = [ + '🌘', '☂️', '⭐️', '✈️', '🚲', '💡', '💾', '💿', '💎', '🎞', ' ⚒', '💊', '📜', '📌', '🔍', '📦', '🔒', + '📒', '🔓', '🌡', '☎️', '🖤', '✝️', '☢️', '✅', '🌐', '🌍', '✳️', '🏴', '😎', '👻', '💩', '👍', '⚡️', '🍸', + '🍴', '⚽️', '🏭', '🚀', '⚓️' + ]; + public const LIST_STYLES = [ 'list' => 'list', 'card' => 'card' @@ -115,6 +121,7 @@ abstract class Model public const PASSWORD_MIN_LENGTH = 4; public const PASSWORD_MAX_LENGTH = 32; public const MAX_COOKIE_CONSERVATION = 365; + public const MAX_QUERY_LENGH = 256; /** RENDER OPTIONS */ // add class in html element indicating from witch page the content come. |