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


PHP Mage_Adminhtml_Block_Widget_Grid::_construct方法代码示例

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


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

示例1: _construct

 protected function _construct()
 {
     parent::_construct();
     $this->setId('catalog_category_products');
     $this->setDefaultSort('entity_id');
     $this->setUseAjax(true);
 }
开发者ID:natxetee,项目名称:magento2,代码行数:7,代码来源:Product.php

示例2: _construct

 /**
  * Set defaults
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('slidersGrid');
     $this->setDefaultSort('slider_id');
     $this->setDefaultDir('desc');
 }
开发者ID:santhosh400,项目名称:ecart,代码行数:10,代码来源:Grid.php

示例3: _construct

 protected function _construct()
 {
     parent::_construct();
     $this->setId('productsReportGrid');
     $this->setDefaultSort('entity_id');
     $this->setDefaultDir('desc');
 }
开发者ID:natxetee,项目名称:magento2,代码行数:7,代码来源:Grid.php

示例4: _construct

 /**
  * Initialize grid
  */
 public function _construct()
 {
     parent::_construct();
     $this->setId('rmaGrid');
     $this->setDefaultSort('date_requested');
     $this->setDefaultDir('DESC');
 }
开发者ID:sagmahajan,项目名称:aswan_release,代码行数:10,代码来源:Grid.php

示例5: _construct

 /**
  * Internal constructor
  *
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('customVariablesGrid');
     $this->setDefaultSort('variable_id');
     $this->setDefaultDir('ASC');
 }
开发者ID:hyhoocchan,项目名称:mage-local,代码行数:11,代码来源:Grid.php

示例6: _construct

 /**
  * Set ajax/session parameters
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('sales_recurring_profile_grid');
     $this->setUseAjax(true);
     $this->setSaveParametersInSession(true);
 }
开发者ID:natxetee,项目名称:magento2,代码行数:10,代码来源:Grid.php

示例7: _construct

 public function _construct()
 {
     parent::_construct();
     $this->zoneType = Mage::registry('msp_cashondelivery_zone');
     $this->setId('cashondeliveryGrid');
     $this->_controller = 'msp_cashondelivery';
 }
开发者ID:kushhot,项目名称:mostimportantmgdata,代码行数:7,代码来源:Grid.php

示例8: _construct

 /**
  * Prepare grid.
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('attributeNameGrid');
     $this->setDefaultSort('attribute_name');
     $this->setVarNameFilter('attribute_name_filter');
 }
开发者ID:ridhoq,项目名称:mxpi-twitter,代码行数:12,代码来源:Grid.php

示例9: _construct

 /**
  * Initialize grid settings
  *
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('find_feed_list_items');
     $this->setDefaultSort('id');
     $this->setUseAjax(true);
 }
开发者ID:jpbender,项目名称:mage_virtual,代码行数:11,代码来源:Grid.php

示例10: _construct

 protected function _construct()
 {
     parent::_construct();
     $this->setUseAjax(true);
     $this->_parentTemplate = $this->getTemplate();
     $this->setTemplate('customer/tab/cart.phtml');
 }
开发者ID:natxetee,项目名称:magento2,代码行数:7,代码来源:Cart.php

示例11: _construct

 /**
  * Block construction, prepare grid params
  *
  * @param array $arguments Object data
  */
 protected function _construct()
 {
     parent::_construct();
     //$this->setDefaultSort('name');
     $this->setUseAjax(true);
     $this->setDefaultFilter(array('chooser_is_active' => '1'));
 }
开发者ID:natxetee,项目名称:magento2,代码行数:12,代码来源:Chooser.php

示例12: _construct

 protected function _construct()
 {
     parent::_construct();
     $this->setId('customer_orders_grid');
     $this->setDefaultSort('created_at', 'desc');
     $this->setUseAjax(true);
 }
开发者ID:natxetee,项目名称:magento2,代码行数:7,代码来源:Orders.php

示例13: _construct

 protected function _construct()
 {
     parent::_construct();
     $this->setId('types_grid');
     $this->setSaveParametersInSession(true);
     $this->setUseAjax(true);
 }
开发者ID:natxetee,项目名称:magento2,代码行数:7,代码来源:Grid.php

示例14: _construct

 /**
  * Block constructor, prepare grid params
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setDefaultSort('rule_id');
     $this->setDefaultDir('ASC');
     $this->setUseAjax(true);
 }
开发者ID:natxetee,项目名称:magento2,代码行数:10,代码来源:Chooser.php

示例15: _construct

 public function _construct()
 {
     parent::_construct();
     $this->setUseAjax(true);
     $this->setId('versions');
     $this->setSaveParametersInSession(true);
 }
开发者ID:jpbender,项目名称:mage_virtual,代码行数:7,代码来源:Versions.php


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