当前位置: 首页>>代码示例>>PHP>>正文


PHP WFEditor::__construct方法代码示例

本文整理汇总了PHP中WFEditor::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP WFEditor::__construct方法的具体用法?PHP WFEditor::__construct怎么用?PHP WFEditor::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WFEditor的用法示例。


在下文中一共展示了WFEditor::__construct方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: array

 /**
  * Constructor activating the default information of the class
  *
  * @access	public
  */
 function __construct($config = array())
 {
     // Call parent
     parent::__construct();
     $db = JFactory::getDBO();
     // get plugin name
     $plugin = JRequest::getCmd('plugin');
     // check plugin
     if ($this->checkPlugin($plugin)) {
         $this->set('name', $plugin);
         if (!array_key_exists('type', $config)) {
             $config['type'] = 'standard';
         }
         if (!array_key_exists('base_path', $config)) {
             $config['base_path'] = WF_EDITOR_PLUGINS . '/' . $plugin;
         }
         if (!defined('WF_EDITOR_PLUGIN')) {
             define('WF_EDITOR_PLUGIN', $config['base_path']);
         }
         if (!array_key_exists('view_path', $config)) {
             $config['view_path'] = WF_EDITOR_PLUGINS . '/' . $plugin;
         }
         if (!array_key_exists('layout', $config)) {
             $config['layout'] = 'default';
         }
         if (!array_key_exists('template_path', $config)) {
             $config['template_path'] = WF_EDITOR_PLUGIN . '/tmpl';
         }
         $this->setProperties($config);
     } else {
         die(JError::raiseError(403, 'RESTRICTED ACCESS'));
     }
 }
开发者ID:01J,项目名称:bealtine,代码行数:38,代码来源:plugin.php

示例2: __construct

 /**
  * Constructor activating the default information of the class
  * @access	protected
  */
 public function __construct()
 {
     // Call parent
     parent::__construct();
     $dialog = JRequest::getWord('dialog');
     $theme = JRequest::getWord('theme');
     $this->set('dialog', $dialog);
     $this->set('theme', $theme);
     $this->execute();
 }
开发者ID:omarmm,项目名称:MangLuoiBDS,代码行数:14,代码来源:theme.php

示例3: define

 /**
  * Constructor activating the default information of the class
  *
  * @access	public
  */
 function __construct()
 {
     // Call parent
     parent::__construct();
     $db = JFactory::getDBO();
     // get plugin name
     $plugin = JRequest::getCmd('plugin');
     // check plugin
     if ($this->checkPlugin($plugin)) {
         $this->set('_name', $plugin);
         $this->set('_type', JRequest::getWord('type', 'standard'));
         if (!defined('WF_EDITOR_PLUGIN')) {
             define('WF_EDITOR_PLUGIN', WF_EDITOR_PLUGINS . DS . $plugin);
         }
         // set variables for view
         $this->set('_layout', 'default');
         $this->set('_base_path', WF_EDITOR_PLUGIN);
         $this->set('_template_path', WF_EDITOR_PLUGIN . DS . 'tmpl');
     } else {
         die(JError::raiseError(403, 'RESTRICTED ACCESS'));
     }
 }
开发者ID:optimosolution,项目名称:marhk,代码行数:27,代码来源:plugin.php

示例4: dirname

 /**
  * Constructor activating the default information of the class
  *
  * @access	protected
  */
 function __construct()
 {
     // Call parent
     parent::__construct();
     $db =& JFactory::getDBO();
     $plugin = JRequest::getVar('plugin');
     if ($plugin) {
         if (is_dir(CKE_PLUGINS . DS . $plugin)) {
             $this->set('name', $plugin);
             $this->set('type', JRequest::getVar('type', 'standard'));
             /*	if (!defined('CKE_PLUGINS')) {
             				define('CKE_PLUGINS', CKE_PLUGINS . DS . $plugin);
             			}*/
             // set variables for view
             $this->set('layout', 'link');
             $this->set('base_path', dirname(__FILE__) . DS . '..' . DS . '..' . DS . 'tmpl' . DS . 'browser' . DS . 'tmpl');
             $this->set('template_path', CKE_PLUGINS . DS . 'linkBrowser' . DS . 'tmpl' . DS . 'linkBrowser' . DS . 'tmpl');
         }
     } else {
         die(JError::raiseError(403, JText::_('ERROR_403')));
     }
 }
开发者ID:neoandrew1000,项目名称:crao_journal,代码行数:27,代码来源:plugin.php


注:本文中的WFEditor::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。