diff options
Diffstat (limited to 'app/php/layouts/Layout.php')
-rw-r--r-- | app/php/layouts/Layout.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/php/layouts/Layout.php b/app/php/layouts/Layout.php new file mode 100644 index 0000000..324c69f --- /dev/null +++ b/app/php/layouts/Layout.php @@ -0,0 +1,11 @@ +<?php + +class Layout extends TTemplateControl { + + public function generateViewID() { + return $this->ViewID->Value ?: md5(mt_rand()); + } + +} + +?> |