當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Mage_Adminhtml_Block_Widget_Form::_construct方法代碼示例

本文整理匯總了PHP中Mage_Adminhtml_Block_Widget_Form::_construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP Mage_Adminhtml_Block_Widget_Form::_construct方法的具體用法?PHP Mage_Adminhtml_Block_Widget_Form::_construct怎麽用?PHP Mage_Adminhtml_Block_Widget_Form::_construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Mage_Adminhtml_Block_Widget_Form的用法示例。


在下文中一共展示了Mage_Adminhtml_Block_Widget_Form::_construct方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: _construct

 public function _construct()
 {
     parent::_construct();
     $this->setId('agere_meta_form');
     //agere_seo_meta_form
     $this->setTitle($this->__('Meta Rule Information'));
 }
開發者ID:popovsergiy,項目名稱:magento-seo,代碼行數:7,代碼來源:Form.php

示例2: _construct

 /**
  * @see parent
  */
 protected function _construct()
 {
     parent::_construct();
     $this->_helper = Mage::helper('bronto_reviews');
     $this->_productHelper = Mage::helper('bronto_common/product');
     $this->_storeId = $this->getRequest()->getParam('store', 0);
 }
開發者ID:bevello,項目名稱:bevello,代碼行數:10,代碼來源:Abstract.php

示例3: _construct

 public function _construct()
 {
     parent::_construct();
     $this->_fieldSetCollection = array();
     $this->_titleFieldSet = '';
     $this->_comment = '';
     $this->setTemplate('revslideshow/edit/tab/slider.phtml');
 }
開發者ID:CodazonGroup,項目名稱:coda,代碼行數:8,代碼來源:Slider.php

示例4: _construct

 /**
  * Magento Construct, create initial form
  *
  * @throws Exception
  */
 protected function _construct()
 {
     parent::_construct();
     $this->currentData = $this->getCurrentValues();
     $actionUrl = $this->isStage2() ? '*/*/save' : '*/*/edit';
     $action = $this->getUrl($actionUrl, array('id' => $this->getRequest()->getParam('id')));
     $this->_form = new Varien_Data_Form(array('id' => 'edit_form', 'action' => $action, 'method' => 'post', 'html_id_prefix' => 'trigger_', 'field_name_suffix' => 'trigger'));
 }
開發者ID:WeareJH,項目名稱:esendex-magento-extension,代碼行數:13,代碼來源:Form.php

示例5: _construct

 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('bl/customgrid/widget/grid/form.phtml');
 }
開發者ID:xiaoguizhidao,項目名稱:blingjewelry-prod,代碼行數:5,代碼來源:Form.php

示例6: _construct

 protected function _construct()
 {
     parent::_construct();
     $this->setId('promo_quote_form');
     $this->setTitle(Mage::helper('Mage_SalesRule_Helper_Data')->__('Rule Information'));
 }
開發者ID:natxetee,項目名稱:magento2,代碼行數:6,代碼來源:Form.php

示例7: _construct

 /**
  * Class constructor
  *
  */
 public function _construct()
 {
     parent::_construct();
     $this->setId('rma_items_grid');
 }
開發者ID:hyhoocchan,項目名稱:mage-local,代碼行數:9,代碼來源:Items.php

示例8: _construct

 /**
  * Init class
  *
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('checkoutAgreementForm');
     $this->setTitle(Mage::helper('Mage_Checkout_Helper_Data')->__('Terms and Conditions Information'));
 }
開發者ID:natxetee,項目名稱:magento2,代碼行數:10,代碼來源:Form.php

示例9: _construct

 /**
  * Init Form properties
  *
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('catalog_search_form');
     $this->setTitle(Mage::helper('Mage_Catalog_Helper_Data')->__('Search Information'));
 }
開發者ID:natxetee,項目名稱:magento2,代碼行數:10,代碼來源:Form.php

示例10: _construct

 /**
  * Magento's class contructor
  */
 protected function _construct()
 {
     parent::_construct();
     $this->_helper = Mage::helper('ash_slideshow');
 }
開發者ID:AleksNesh,項目名稱:pandora,代碼行數:8,代碼來源:Form.php

示例11: _construct

 protected function _construct()
 {
     parent::_construct();
     $this->zoneType = Mage::registry('msp_cashondelivery_zone');
 }
開發者ID:kushhot,項目名稱:mostimportantmgdata,代碼行數:5,代碼來源:Form.php

示例12: _construct

 /**
  * Set blcok template.
  *
  * @var string
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('mageparts/ddq/catalog/product/form.phtml');
 }
開發者ID:finelinePG,項目名稱:finelink-dev,代碼行數:10,代碼來源:Form.php

示例13: _construct

 protected function _construct()
 {
     parent::_construct();
     $this->setId('order_status_state');
 }
開發者ID:natxetee,項目名稱:magento2,代碼行數:5,代碼來源:Form.php

示例14: _construct

 /**
  * Constructor
  */
 protected function _construct()
 {
     parent::_construct();
 }
開發者ID:DeveshKumarThakur,項目名稱:cosmetics,代碼行數:7,代碼來源:Form.php

示例15: _construct

 /**
  * constructor
  *
  * @access public
  * @return void
  * @author Marius Strajeru <ultimate.module.creator@gmail.com>
  */
 public function _construct()
 {
     parent::_construct();
     $this->setTemplate('ultimate_modulecreator/edit/tab/relation.phtml');
 }
開發者ID:cojaco,項目名稱:UltimateModuleCreator,代碼行數:12,代碼來源:Relation.php


注:本文中的Mage_Adminhtml_Block_Widget_Form::_construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。