本文整理匯總了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'));
}
示例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);
}
示例3: _construct
public function _construct()
{
parent::_construct();
$this->_fieldSetCollection = array();
$this->_titleFieldSet = '';
$this->_comment = '';
$this->setTemplate('revslideshow/edit/tab/slider.phtml');
}
示例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'));
}
示例5: _construct
protected function _construct()
{
parent::_construct();
$this->setTemplate('bl/customgrid/widget/grid/form.phtml');
}
示例6: _construct
protected function _construct()
{
parent::_construct();
$this->setId('promo_quote_form');
$this->setTitle(Mage::helper('Mage_SalesRule_Helper_Data')->__('Rule Information'));
}
示例7: _construct
/**
* Class constructor
*
*/
public function _construct()
{
parent::_construct();
$this->setId('rma_items_grid');
}
示例8: _construct
/**
* Init class
*
*/
protected function _construct()
{
parent::_construct();
$this->setId('checkoutAgreementForm');
$this->setTitle(Mage::helper('Mage_Checkout_Helper_Data')->__('Terms and Conditions Information'));
}
示例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'));
}
示例10: _construct
/**
* Magento's class contructor
*/
protected function _construct()
{
parent::_construct();
$this->_helper = Mage::helper('ash_slideshow');
}
示例11: _construct
protected function _construct()
{
parent::_construct();
$this->zoneType = Mage::registry('msp_cashondelivery_zone');
}
示例12: _construct
/**
* Set blcok template.
*
* @var string
*/
protected function _construct()
{
parent::_construct();
$this->setTemplate('mageparts/ddq/catalog/product/form.phtml');
}
示例13: _construct
protected function _construct()
{
parent::_construct();
$this->setId('order_status_state');
}
示例14: _construct
/**
* Constructor
*/
protected function _construct()
{
parent::_construct();
}
示例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');
}