コード例 #1
0
ファイル: tag.php プロジェクト: alexinteam/joomla3
 function edit()
 {
     // @task: Check for acl rules.
     $this->checkAccess('tag');
     JRequest::setVar('view', 'tag');
     JRequest::setVar('tagid', JRequest::getVar('tagid', '', 'REQUEST'));
     parent::display();
 }
コード例 #2
0
ファイル: acl.php プロジェクト: alexinteam/joomla3
 function add()
 {
     // @task: Check for acl rules.
     $this->checkAccess('acl');
     JRequest::setVar('view', 'acl');
     JRequest::setVar('add', true);
     JRequest::setVar('type', 'assigned');
     parent::display();
 }
コード例 #3
0
ファイル: blogs.php プロジェクト: alexinteam/joomla3
 function edit()
 {
     // @task: Check for acl rules.
     $this->checkAccess('blog');
     JRequest::setVar('view', 'blog');
     JRequest::setVar('blogid', JRequest::getVar('blogid', '', 'REQUEST'));
     JRequest::setVar('draft_id', JRequest::getVar('draft_id', '', 'REQUEST'));
     JRequest::setVar('approval', JRequest::getVar('approval', '', 'REQUEST'));
     parent::display();
 }