X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fxorg.inc.php;h=9d9b5923dc006c3a8eae73dde12c70bf46ce614c;hb=9e1816c7666767755abbc24f6a0df290efff81b6;hp=97c8a037e175e75f9624925d2cb33ae6bbf4f66b;hpb=bbceafce062e1e542520a6490c277a3eed917060;p=platal.git diff --git a/include/xorg.inc.php b/include/xorg.inc.php index 97c8a03..9d9b592 100644 --- a/include/xorg.inc.php +++ b/include/xorg.inc.php @@ -1,6 +1,6 @@ PlatalPage($tpl, $type); - } - - function run() - { - global $globals; - $this->assign('globals', $globals); - $this->_run('skin/'.S::v('skin', 'default.tpl')); - } -} - -// }}} -// {{{ class XorgAdmin - -/** Une classe pour les pages réservées aux admins (authentifiés!). - */ -class XorgAdmin extends XorgPage -{ - // {{{ function XorgAdmin() - - function XorgAdmin($tpl, $type = SKINNED) - { - $this->XorgPage($tpl, $type); - check_perms(); - } - - // }}} -} - -// }}} - -function _new_page($type, $tpl_name, $admin=false) -{ - global $page; - if (!empty($admin)) { - $page = new XorgAdmin($tpl_name, $type); - } else { - $page = new XorgPage($tpl_name, $type); - } - - $page->assign('xorg_tpl', $tpl_name); -} - -// {{{ function new_skinned_page() - -function new_skinned_page($tpl_name) -{ - _new_page(SKINNED, $tpl_name); -} - -// }}} -// {{{ function new_admin_page() - -function new_admin_page($tpl_name) -{ - _new_page(SKINNED, $tpl_name, true); -} - -// }}} - -// vim:set et sw=4 sts=4 sws=4 foldmethod=marker: +// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>