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


PHP Mage_Adminhtml_Block_Store_Switcher::__construct方法代码示例

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


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

示例1: __construct

 public function __construct()
 {
     parent::__construct();
     $this->setTemplate('downloads/switcher_store.phtml');
     $this->setUseConfirm(true);
     $this->setUseAjax(true);
     $this->setDefaultStoreName(Mage::helper('downloads')->__('All Store Views'));
 }
开发者ID:commercekitchen,项目名称:dualeyewear-magento,代码行数:8,代码来源:Store.php

示例2: __construct

 /**
  * Add website filter
  */
 public function __construct()
 {
     parent::__construct();
     $this->setUseConfirm(false);
     if ($this->_getCustomer()->getSharingConfig()->isWebsiteScope()) {
         $this->setWebsiteIds($this->_getCustomer()->getSharedWebsiteIds());
     }
 }
开发者ID:jpbender,项目名称:mage_virtual,代码行数:11,代码来源:Switcher.php

示例3: __construct

 public function __construct()
 {
     parent::__construct();
     $role = Mage::getSingleton('aitpermissions/role');
     if ($role->isScopeStore()) {
         $this->hasDefaultOption(false);
     }
     if ($role->isScopeWebsite()) {
         $this->setWebsiteIds($role->getAllowedWebsiteIds());
     }
 }
开发者ID:finelinePG,项目名称:finelink-dev,代码行数:11,代码来源:AdminStoreSwitcher.php

示例4: __construct

 /**
  * Set overriden params
  */
 public function __construct()
 {
     parent::__construct();
     $this->setUseConfirm(false)->setSwitchUrl($this->getUrl('*/*/*', array('store' => null)));
 }
开发者ID:quyip8818,项目名称:Mag,代码行数:8,代码来源:Switcher.php

示例5: __construct

 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->setTemplate('catalog/product/edit/websites.phtml');
 }
开发者ID:cewolf2002,项目名称:magento,代码行数:8,代码来源:Websites.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
     $this->setId('sc_store_select');
 }
开发者ID:jauderho,项目名称:magento-mirror,代码行数:5,代码来源:Select.php

示例7: __construct

 public function __construct()
 {
     parent::__construct();
     $this->setDefaultStoreName($this->__('Default Store (%s)', AO::app()->getDefaultStoreView()->getName()))->setUseConfirm(false)->setSwitchUrl($this->getUrl('*/*/*', array('store' => null)));
 }
开发者ID:ronseigel,项目名称:agent-ohm,代码行数:5,代码来源:Adminhtml_Store_Switcher.php

示例8: __construct

 public function __construct()
 {
     parent::__construct();
     $this->setId('sc_store_select');
     $this->setTemplate('sales/order/create/store/select.phtml');
 }
开发者ID:ronseigel,项目名称:agent-ohm,代码行数:6,代码来源:Sales_Order_Create_Store_Select.php

示例9: __construct

 public function __construct()
 {
     parent::__construct();
     $this->setTemplate('styla/connect/adminhtml/hint/summary.phtml');
 }
开发者ID:styladev,项目名称:magentoStylaConnect,代码行数:5,代码来源:Summary.php

示例10: __construct

 /**
  * Set overriden params
  */
 public function __construct()
 {
     parent::__construct();
     $this->setTemplate('hideprice/store/switcher.phtml');
     $this->setUseConfirm(false);
 }
开发者ID:CE-Webmaster,项目名称:CE-Hub,代码行数:9,代码来源:Switcher.php


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