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


PHP VmController::__construct方法代码示例

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


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

示例1:

 /**
  * Method to display the view
  *
  * @access	public
  */
 function __construct()
 {
     if (!JFactory::getUser()->authorise('core.admin')) {
         JFactory::getApplication()->redirect('index.php', JText::_('JERROR_ALERTNOAUTHOR'));
         return;
     }
     parent::__construct();
 }
开发者ID:denis1001,项目名称:Virtuemart-2-Joomla-3-Bootstrap,代码行数:13,代码来源:updatesmigration.php

示例2:

 /**
  * Method to display the view
  *
  * @access	public
  * @author
  */
 function __construct()
 {
     VmConfig::loadJLang('com_virtuemart_config');
     if (!JFactory::getUser()->authorise('core.admin')) {
         $app = JFactory::getApplication();
         JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR'));
         $app->redirect('index.php');
         return;
     }
     parent::__construct();
 }
开发者ID:denis1001,项目名称:Virtuemart-2-Joomla-3-Bootstrap,代码行数:17,代码来源:config.php

示例3:

 /**
  * Method to display the view
  *
  * @access public
  * @author
  */
 function __construct()
 {
     parent::__construct('virtuemart_user_id');
 }
开发者ID:lenard112,项目名称:cms,代码行数:10,代码来源:user.php

示例4:

 /**
  * Method to display the view
  *
  * @access	public
  * @author
  */
 function __construct()
 {
     parent::__construct('virtuemart_custom_id');
 }
开发者ID:Gskflute,项目名称:joomla25,代码行数:10,代码来源:custom.php

示例5:

	/**
	 * Method to display the view
	 *
	 * @access	public
	 * @author
	 */
	function __construct() {
		parent::__construct('virtuemart_manufacturercategories_id');

	}
开发者ID:kosmosby,项目名称:medicine-prof,代码行数:10,代码来源:manufacturercategories.php

示例6:

 /**
  * Method to display the view
  *
  * @access	public
  */
 function __construct()
 {
     VmConfig::loadJLang('com_virtuemart_config');
     parent::__construct();
 }
开发者ID:cybershocik,项目名称:Darek,代码行数:10,代码来源:config.php

示例7:

 /**
  * Method to display the view
  *
  * @access	public
  */
 function __construct()
 {
     parent::__construct('virtuemart_shoppergroup_id');
     $this->registerTask('default', 'makeDefault');
 }
开发者ID:Arturogcalleja,项目名称:herbolario,代码行数:10,代码来源:shoppergroup.php

示例8:

 /**
  * Method to display the view
  *
  * @access	public
  * @author
  */
 function __construct()
 {
     parent::__construct();
 }
开发者ID:Arturogcalleja,项目名称:herbolario,代码行数:10,代码来源:inventory.php

示例9: vmdebug

 /**
  * Method to display the view
  *
  * @access	public
  */
 function __construct()
 {
     parent::__construct();
     $task = JRequest::getVar('task');
     vmdebug('cconstruct', $task);
 }
开发者ID:Gskflute,项目名称:joomla25,代码行数:11,代码来源:ratings.php

示例10:

 /**
  * Method to display the view
  *
  * @access	public
  * @author
  */
 function __construct()
 {
     parent::__construct('virtuemart_product_id');
     $this->addViewPath(VMPATH_ADMIN . DS . 'views');
 }
开发者ID:brenot,项目名称:forumdesenvolvimento,代码行数:11,代码来源:product.php

示例11:

	/**
	 * Method to display the view
	 *
	 * @access	public
	 * @author RickG, Max Milbers
	 */
	function __construct() {
		parent::__construct('virtuemart_state_id');

		$country = vRequest::getInt('virtuemart_country_id', 0);
		$this->redirectPath .= ($country > 0) ? '&virtuemart_country_id=' . $country : '';
	}
开发者ID:kosmosby,项目名称:medicine-prof,代码行数:12,代码来源:state.php

示例12:

	/**
	 * Method to display the view
	 *
	 * @access	public
	 */
	function __construct() {
		parent::__construct('virtuemart_shoppergroup_id');
	}
开发者ID:kosmosby,项目名称:medicine-prof,代码行数:8,代码来源:shoppergroup.php

示例13:

 /**
  * Method to display the view
  *
  * @access public
  * @author
  */
 function __construct()
 {
     VmConfig::loadJLang('com_virtuemart_shoppers', TRUE);
     parent::__construct('virtuemart_user_id');
 }
开发者ID:juanmcortez,项目名称:Lectorum,代码行数:11,代码来源:user.php

示例14: array

 function __construct($config = array())
 {
     parent::__construct('virtuemart_orderstate_id', $config);
 }
开发者ID:denis1001,项目名称:Virtuemart-2-Joomla-3-Bootstrap,代码行数:4,代码来源:orderstatus.php

示例15:

 /**
  * Method to display the view
  *
  * @access	public
  */
 function __construct()
 {
     parent::__construct();
     $this->registerTask('default', 'makeDefault');
 }
开发者ID:denis1001,项目名称:Virtuemart-2-Joomla-3-Bootstrap,代码行数:10,代码来源:shoppergroup.php


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