当前位置: 首页>>代码示例>>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

 /**
  * Initialize grid
  */
 public function __construct()
 {
     parent::__construct();
     $this->setId('giftwrappingGrid');
     $this->setDefaultSort('wrapping_id');
     $this->setDefaultDir('ASC');
 }
开发者ID:barneydesmond,项目名称:propitious-octo-tribble,代码行数:10,代码来源:Grid.php

示例2: __construct

 public function __construct()
 {
     parent::__construct();
     $this->setId('history_grid');
     $this->setDefaultSort('performed_at', 'desc');
     $this->setUseAjax(true);
 }
开发者ID:blazeriaz,项目名称:youguess,代码行数:7,代码来源:History.php

示例3: __construct

 /**
  * Block constructor, prepare grid params
  *
  * @param array $arguments
  */
 public function __construct($arguments = array())
 {
     parent::__construct($arguments);
     $this->setDefaultSort('rule_id');
     $this->setDefaultDir('ASC');
     $this->setUseAjax(true);
 }
开发者ID:nemphys,项目名称:magento2,代码行数:12,代码来源:Chooser.php

示例4: __construct

 public function __construct()
 {
     parent::__construct();
     $this->setId('taxClassGrid');
     $this->setDefaultSort('class_name');
     $this->setDefaultDir('ASC');
 }
开发者ID:nemphys,项目名称:magento2,代码行数:7,代码来源:Grid.php

示例5: __construct

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

示例6: __construct

 /**
  * Class constructor
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->setId('check_rewrites_grid');
     $this->_filterVisibility = false;
     $this->_pagerVisibility = false;
 }
开发者ID:helirexi,项目名称:firegento-debug,代码行数:12,代码来源:Grid.php

示例7: __construct

 /**
  * Constructor
  *
  * Setting grid_id, sort order and sort direction
  */
 public function __construct()
 {
     parent::__construct();
     $this->setId('app_history_grid');
     $this->setDefaultSort('created_at');
     $this->setDefaultDir('ASC');
 }
开发者ID:QiuLihua83,项目名称:magento-enterprise-1.13.1.0,代码行数:12,代码来源:Grid.php

示例8: __construct

 /**
  * Initialize Grid Block
  *
  */
 public function __construct()
 {
     parent::__construct();
     $this->setSaveParametersInSession(true);
     $this->setDefaultSort('code');
     $this->setDefaultDir('asc');
 }
开发者ID:hientruong90,项目名称:ee_14_installer,代码行数:11,代码来源:Grid.php

示例9: __construct

 /**
  * Class constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->setId('mobile_apps_grid');
     $this->setDefaultSort('application_id');
     $this->setDefaultDir('ASC');
 }
开发者ID:Airmal,项目名称:Magento-Em,代码行数:10,代码来源:Grid.php

示例10: __construct

 /**
  * Initialize Grid block
  *
  */
 public function __construct()
 {
     parent::__construct();
     $this->_defaultLimit = 200;
     $this->setId('extension_custom_edit_grid');
     $this->setUseAjax(true);
 }
开发者ID:SalesOneGit,项目名称:s1_magento,代码行数:11,代码来源:Grid.php

示例11: __construct

 /**
  *	Constructor the grid
  */
 public function __construct()
 {
     parent::__construct();
     $this->setId('reportsviewerGrid');
     $this->setDefaultSort('added', 'DESC');
     $this->setSaveParametersInSession(true);
 }
开发者ID:digitalpianism,项目名称:reportsviewer,代码行数:10,代码来源:Grid.php

示例12: __construct

 public function __construct()
 {
     $this->_headerText = Mage::helper('byjuno')->__('Log');
     parent::__construct();
     $this->setId('byjunoGrid');
     $this->_controller = 'byjuno';
 }
开发者ID:istgin,项目名称:Byjuno,代码行数:7,代码来源:Log.php

示例13: __construct

 /**
  * Initialize Grid Properties
  *
  */
 public function __construct()
 {
     parent::__construct();
     $this->setId('searchReportGrid');
     $this->setDefaultSort('query_id');
     $this->setDefaultDir('desc');
 }
开发者ID:votanlean,项目名称:Magento-Pruebas,代码行数:11,代码来源:Grid.php

示例14: __construct

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

示例15: __construct

 /**
  * Constructor
  *
  * Set main configuration of grid
  */
 public function __construct()
 {
     parent::__construct();
     $this->setId('subscriberGrid');
     $this->setUseAjax(true);
     $this->setDefaultSort('subscriber_id', 'desc');
 }
开发者ID:ronseigel,项目名称:agent-ohm,代码行数:12,代码来源:Newsletter_Subscriber_Grid.php


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