示例#1
0
 function __construct($app)
 {
     # Get ip address
     $this->ipaddress = s2GetIpAddress();
     $this->app = $app;
     # Load models
     $this->__initModels();
     parent::__construct();
 }
示例#2
0
 function __construct($app = 'jreviews')
 {
     parent::__construct();
     if (!empty($this->helpers)) {
         $this->app = $app;
         App::import('Helper', $this->helpers, $this->app);
         foreach ($this->helpers as $helper) {
             $method_name = inflector::camelize($helper);
             $class_name = $method_name . 'Helper';
             if (!isset($this->loaded[$method_name])) {
                 $this->{$method_name} = ClassRegistry::getClass($class_name);
                 $this->loaded[$method_name] =& ${$method_name};
             }
         }
     }
 }
示例#3
0
 function __construct($app)
 {
     global $Itemid, $mosConfig_sef, $mosConfig_lang;
     cmsFramework::init($this);
     if (isset($this->xajax) && $this->xajax == true) {
         $this->loadXajax();
     }
     /****************** THIS BLOCK CAN PROBABLY BE DELETED ******************/
     $this->language = $mosConfig_lang;
     $this->itemid = $Itemid;
     $this->sef = $mosConfig_sef;
     /****************** THIS BLOCK CAN PROBABLY BE DELETED ******************/
     # Get ip address
     $this->ipaddress = s2GetIpAddress();
     $this->app = $app;
     # Load models
     $this->__initModels();
     parent::__construct();
 }
示例#4
0
文件: folder.php 项目: bizanto/Hooked
 /**
  * Constructor.
  *
  * @param string $path Path to folder
  * @param boolean $create Create folder if not found
  * @param mixed $mode Mode (CHMOD) to apply to created folder, false to ignore
  */
 function __construct($path = false, $create = false, $mode = false)
 {
     parent::__construct();
     if (empty($path)) {
         $path = S2Paths::get('jreviews', 'S2_TMP');
     }
     if ($mode) {
         $this->mode = $mode;
     }
     if (!file_exists($path) && $create === true) {
         $this->create($path, $this->mode);
     }
     if (!Folder::isAbsolute($path)) {
         $path = realpath($path);
     }
     if (!empty($path)) {
         $this->cd($path);
     }
 }
示例#5
0
文件: l10n.php 项目: bizanto/Hooked
 /**
  * Class constructor
  */
 function __construct()
 {
     if (defined('DEFAULT_LANGUAGE')) {
         $this->default = DEFAULT_LANGUAGE;
     }
     parent::__construct();
 }
 function index()
 {
     $file = S2Object::locateThemeFile('modules', 'advanced_search');
     $this->fieldTags = $this->extractTags(file_get_contents($file));
     return $this->render('modules', 'advanced_search');
 }
示例#7
0
 function __construct()
 {
     # Adds CMS DB and Mainframe methods
     $this->_db =& cmsFramework::getDB();
     parent::__construct();
 }
示例#8
0
文件: file.php 项目: bizanto/Hooked
 /**
  * Constructor
  *
  * @param string $path Path to file
  * @param boolean $create Create file if it does not exist (if true)
  * @param integer $mode Mode to apply to the folder holding the file
  * @access private
  */
 function __construct($path, $create = false, $mode = 0755)
 {
     parent::__construct();
     $this->Folder = new Folder(dirname($path), $create, $mode);
     if (!is_dir($path)) {
         $this->name = basename($path);
     }
     $this->pwd();
     if (!$this->exists()) {
         if ($create === true) {
             if ($this->safe($path) && $this->create() === false) {
                 return false;
             }
         } else {
             return false;
         }
     }
 }
示例#9
0
 function renderControllerView($controller, $name, $params = array(), $loadHelpers = false)
 {
     // Finds the view file
     $viewPath = S2Object::locateThemeFile($controller, $name, $this->ext);
     if ($viewPath) {
         $params = array_merge_recursive($params, $this->loaded);
         return $this->_render($viewPath, array_merge($this->viewVars, $params), $loadHelpers);
     }
 }
示例#10
0
 /**
  * Constructor
  *
  * @access private
  */
 function __construct()
 {
     $this->overload();
     parent::__construct();
 }
示例#11
0
文件: model.php 项目: bizanto/Hooked
 function __construct()
 {
     # Adds CMS DB and Mainframe methods
     cmsFramework::init($this);
     parent::__construct();
 }