本文整理汇总了PHP中Mage_Adminhtml_Block_Widget_Grid_Container::_construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Adminhtml_Block_Widget_Grid_Container::_construct方法的具体用法?PHP Mage_Adminhtml_Block_Widget_Grid_Container::_construct怎么用?PHP Mage_Adminhtml_Block_Widget_Grid_Container::_construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Adminhtml_Block_Widget_Grid_Container
的用法示例。
在下文中一共展示了Mage_Adminhtml_Block_Widget_Grid_Container::_construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _construct
protected function _construct()
{
$this->_controller = 'tax_rule';
$this->_headerText = Mage::helper('Mage_Tax_Helper_Data')->__('Manage Tax Rules');
$this->_addButtonLabel = Mage::helper('Mage_Tax_Helper_Data')->__('Add New Tax Rule');
parent::_construct();
}
示例2: _construct
/**
* Initialize Grid Container
*
*/
protected function _construct()
{
$this->_controller = 'report_search';
$this->_headerText = Mage::helper('Mage_Reports_Helper_Data')->__('Search Terms');
parent::_construct();
$this->_removeButton('add');
}
示例3: _construct
public function _construct()
{
$this->_blockGroup = 'manager';
$this->_controller = 'adminhtml_postcode';
$this->_headerText = Mage::helper('manager')->__('Post Code Manage');
parent::_construct();
}
示例4: _construct
/**
* Block constructor
*/
protected function _construct()
{
$this->_controller = 'sitemap';
$this->_headerText = Mage::helper('Mage_Sitemap_Helper_Data')->__('XML Sitemap');
$this->_addButtonLabel = Mage::helper('Mage_Sitemap_Helper_Data')->__('Add Sitemap');
parent::_construct();
}
示例5: _construct
public function _construct()
{
$this->_controller = 'log';
$this->_blockGroup = 'wsalogger_adminhtml';
$this->_headerText = Mage::helper('wsalogger')->__('WebShopApps Log');
parent::_construct();
}
示例6: _construct
protected function _construct()
{
parent::_construct();
$this->_blockGroup = 'alaa_facebookconnect_admin';
$this->_controller = 'user';
$this->_headerText = $this->getAlaaFacebookConnectHelper()->__('Facebook Users');
}
示例7: _construct
protected function _construct()
{
parent::_construct();
$this->_blockGroup = 'jorgemurta_branddirectory_adminhtml';
$this->_controller = 'brand';
$this->_headerText = Mage::helper('jorgemurta_branddirectory')->__('Brand Directory');
}
示例8: _construct
/**
* Block constructor
*/
protected function _construct()
{
$this->_controller = 'system_variable';
$this->_headerText = Mage::helper('Mage_Adminhtml_Helper_Data')->__('Custom Variables');
parent::_construct();
$this->_updateButton('add', 'label', Mage::helper('Mage_Adminhtml_Helper_Data')->__('Add New Variable'));
}
示例9: _construct
protected function _construct()
{
$this->_controller = 'report_review_customer';
$this->_headerText = Mage::helper('Mage_Reports_Helper_Data')->__('Customers Reviews');
parent::_construct();
$this->_removeButton('add');
}
示例10: _construct
public function _construct()
{
parent::_construct();
$this->_blockGroup = 'bluecom_branddirectory_adminhtml';
$this->_controller = 'brand';
$this->_headerText = Mage::helper('bluecom_branddirectory')->__('Brand Directory');
}
示例11: _construct
protected function _construct()
{
$this->_blockGroup = 'gorilla_queue';
$this->_controller = 'adminhtml_queue';
$this->_headerText = $this->__('List Queue Items');
parent::_construct();
}
示例12: _construct
protected function _construct()
{
parent::_construct();
$this->_blockGroup = 'freelunchlabs_mailgun';
$this->_controller = 'adminhtml_global';
$this->_headerText = false;
}
示例13: _construct
protected function _construct()
{
$this->_controller = 'report_sales_shipping';
$this->_headerText = Mage::helper('Mage_Reports_Helper_Data')->__('Total Shipped Report');
parent::_construct();
$this->_removeButton('add');
$this->addButton('filter_form_submit', array('label' => Mage::helper('Mage_Reports_Helper_Data')->__('Show Report'), 'onclick' => 'filterFormSubmit()'));
}
示例14: _construct
/**
* Initialize RMA management page
*
* @return void
*/
public function _construct()
{
$this->_controller = 'adminhtml_rma';
$this->_blockGroup = 'enterprise_rma';
$this->_headerText = Mage::helper('enterprise_rma')->__('Manage RMA');
$this->_addButtonLabel = Mage::helper('enterprise_rma')->__('New RMA Request');
parent::_construct();
}
示例15: _construct
/**
* Initialize gift wrapping management page
*
* @return void
*/
public function _construct()
{
$this->_controller = 'adminhtml_giftwrapping';
$this->_blockGroup = 'enterprise_giftwrapping';
$this->_headerText = Mage::helper('enterprise_giftwrapping')->__('Manage Gift Wrapping');
$this->_addButtonLabel = Mage::helper('enterprise_giftwrapping')->__('Add Gift Wrapping');
parent::_construct();
}