Inheritance: extends AppController
Ejemplo n.º 1
0
 /**
  * beforeFilter
  */
 function beforeFilter()
 {
     parent::beforeFilter();
     if (!preg_match('/^admin_/', $this->action)) {
         $this->BcAuth->allow($this->action);
     }
 }
Ejemplo n.º 2
0
 /**
  * beforeFilter
  *
  * @return	void
  * @access 	public
  */
 function beforeFilter()
 {
     parent::beforeFilter();
     $user = $this->AuthEx->user();
     $userModel = $this->getUserModel();
     if (!$user || !$userModel) {
         return;
     }
     $newCatAddable = $this->BlogCategory->checkNewCategoryAddable($user[$userModel]['user_group_id'], $this->checkRootEditable());
     $this->set('newCatAddable', $newCatAddable);
 }
Ejemplo n.º 3
0
<?php

/**
* @version		$Id: plugin.php 103 2009-06-21 19:21:18Z happynoodleboy $
* @package		JCE
* @copyright	Copyright (C) 2009 Ryan Demmer. All rights reserved.
* @license		GNU/GPL
* This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
// Table class
require_once JPATH_COMPONENT . DS . 'plugins' . DS . 'plugin.php';
// Controller
require_once JPATH_COMPONENT . DS . 'plugins' . DS . 'controller.php';
// Create the controller
$controller = new PluginsController(array('base_path' => JPATH_COMPONENT . DS . 'plugins'));
$controller->execute(JRequest::getCmd('task'));
$controller->redirect();