• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Mage_Adminhtml_Block_Dashboard_Grid类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中Mage_Adminhtml_Block_Dashboard_Grid的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Adminhtml_Block_Dashboard_Grid类的具体用法?PHP Mage_Adminhtml_Block_Dashboard_Grid怎么用?PHP Mage_Adminhtml_Block_Dashboard_Grid使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



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

示例1: _prepareColumns

 protected function _prepareColumns()
 {
     $this->addColumn('name', array('header' => $this->__('Name'), 'index' => 'name'));
     $this->addColumn('email', array('header' => $this->__('Email'), 'index' => 'email'));
     $this->addColumn('description', array('header' => $this->__('Description'), 'width' => '150px', 'index' => 'description', 'renderer' => 'Forkel_Grids_Block_Adminhtml_Dashboard_Custom_Renderer_Truncate'));
     return parent::_prepareColumns();
 }
开发者ID:tobias-forkel,项目名称:Forkel_Grids,代码行数:7,代码来源:Grid.php


示例2: _prepareColumns

 protected function _prepareColumns()
 {
     $this->addColumn('name', array('header' => AO::helper('reports')->__('Product Name'), 'sortable' => false, 'index' => 'name'));
     $this->addColumn('price', array('header' => AO::helper('reports')->__('Price'), 'width' => '120px', 'type' => 'currency', 'currency_code' => (string) AO::app()->getStore((int) $this->getParam('store'))->getBaseCurrencyCode(), 'sortable' => false, 'index' => 'price'));
     $this->addColumn('views', array('header' => AO::helper('reports')->__('Number of Views'), 'width' => '120px', 'align' => 'right', 'sortable' => false, 'index' => 'views'));
     $this->setFilterVisibility(false);
     $this->setPagerVisibility(false);
     return parent::_prepareColumns();
 }
开发者ID:ronseigel,项目名称:agent-ohm,代码行数:9,代码来源:Dashboard_Tab_Products_Viewed.php


示例3: _prepareColumns

 protected function _prepareColumns()
 {
     $this->addColumn('search_query', array('header' => $this->__('Search Term'), 'sortable' => false, 'index' => 'query_text'));
     $this->addColumn('num_results', array('header' => $this->__('Results'), 'sortable' => false, 'index' => 'num_results', 'type' => 'number'));
     $this->addColumn('popularity', array('header' => $this->__('Number of Uses'), 'sortable' => false, 'index' => 'popularity', 'type' => 'number'));
     $this->setFilterVisibility(false);
     $this->setPagerVisibility(false);
     return parent::_prepareColumns();
 }
开发者ID:arslbbt,项目名称:mangentovies,代码行数:9,代码来源:Top.php


示例4: _prepareColumns

 protected function _prepareColumns()
 {
     $this->addColumn('sku', array('header' => $this->__('Product SKU'), 'sortable' => false, 'index' => 'sku'));
     $this->addColumn('name', array('header' => $this->__('Product Name'), 'sortable' => false, 'index' => 'name'));
     $this->addColumn('creator_id', array('header' => $this->__('Supplier Name'), 'sortable' => false, 'index' => 'creator_id', 'renderer' => 'Cminds_Supplierfrontendproductuploader_Block_Adminhtml_Dashboard_Supplier_Products_Renderer_Name'));
     $this->setFilterVisibility(false);
     $this->setPagerVisibility(false);
     return parent::_prepareColumns();
 }
开发者ID:programmerrahul,项目名称:vastecom,代码行数:9,代码来源:Products.php


示例5: _prepareColumns

 protected function _prepareColumns()
 {
     $this->addColumn('search_query', array('header' => $this->__('Search Term'), 'sortable' => false, 'index' => 'name', 'renderer' => 'Mage_Adminhtml_Block_Dashboard_Searches_Renderer_Searchquery'));
     $this->addColumn('num_results', array('header' => $this->__('Results'), 'sortable' => false, 'index' => 'num_results', 'type' => 'number'));
     $this->addColumn('popularity', array('header' => $this->__('Number of Uses'), 'sortable' => false, 'index' => 'popularity', 'type' => 'number'));
     $this->setFilterVisibility(false);
     $this->setPagerVisibility(false);
     return parent::_prepareColumns();
 }
开发者ID:natxetee,项目名称:magento2,代码行数:9,代码来源:Top.php


示例6: _prepareColumns

 protected function _prepareColumns()
 {
     $this->addColumn('firstname', array('header' => $this->__('Firstname'), 'sortable' => false, 'index' => 'firstname'));
     $this->addColumn('lastname', array('header' => $this->__('Lastname'), 'sortable' => false, 'index' => 'lastname'));
     $this->addColumn('logdate', array('header' => $this->__('Date'), 'type' => 'datetime', 'sortable' => false, 'index' => 'logdate'));
     $this->setFilterVisibility(false);
     $this->setPagerVisibility(false);
     return parent::_prepareColumns();
 }
开发者ID:tobias-forkel,项目名称:Forkel_Grids,代码行数:9,代码来源:Grid.php


示例7: _prepareCollection

 protected function _prepareCollection()
 {
     $collection = Mage::getResourceModel('affiliateplus/account_collection');
     if ($storeId = $this->getRequest()->getParam('store')) {
         $collection->setStoreId($storeId);
     }
     $this->setCollection($collection);
     return parent::_prepareCollection();
 }
开发者ID:cabrerabywaters,项目名称:magentoSunshine,代码行数:9,代码来源:Accounts.php


示例8: _prepareColumns

 protected function _prepareColumns()
 {
     $this->addColumn('name', array('header' => Mage::helper('sales')->__('Product Name'), 'sortable' => false, 'index' => 'product_name'));
     $this->addColumn('price', array('header' => Mage::helper('sales')->__('Price'), 'width' => '120px', 'type' => 'currency', 'currency_code' => (string) Mage::app()->getStore((int) $this->getParam('store'))->getBaseCurrencyCode(), 'sortable' => false, 'index' => 'product_price'));
     $this->addColumn('ordered_qty', array('header' => Mage::helper('sales')->__('Quantity Ordered'), 'width' => '120px', 'align' => 'right', 'sortable' => false, 'index' => 'qty_ordered', 'type' => 'number'));
     $this->setFilterVisibility(false);
     $this->setPagerVisibility(false);
     return parent::_prepareColumns();
 }
开发者ID:Airmal,项目名称:Magento-Em,代码行数:9,代码来源:Ordered.php


示例9: _prepareCollection

 protected function _prepareCollection()
 {
     $collection = Mage::getResourceModel('affiliateplus/transaction_collection');
     $collection->setModel('adminhtml/report_item');
     $itemTable = $collection->getTable('sales/order_item');
     $collection->getSelect()->join(array('i' => $itemTable), 'main_table.order_id = i.order_id AND FIND_IN_SET(i.product_id, main_table.order_item_ids)', array('name', 'product_id', 'product_type', 'sku', 'base_price', 'num_order_placed' => 'SUM(i.qty_ordered)'))->where('type = 3')->group('product_id')->order('num_order_placed DESC')->order('base_price DESC');
     $this->setCollection($collection);
     return parent::_prepareCollection();
 }
开发者ID:cabrerabywaters,项目名称:magentoSunshine,代码行数:9,代码来源:Bestseller.php


示例10: _prepareColumns

 protected function _prepareColumns()
 {
     $this->addColumn('title', array('header' => $this->__('Title'), 'sortable' => false, 'index' => 'title'));
     $this->addColumn('identifier', array('header' => $this->__('Identifier'), 'sortable' => false, 'index' => 'identifier'));
     $this->addColumn('update_time', array('header' => $this->__('Last Modified'), 'sortable' => false, 'index' => 'update_time'));
     $this->setFilterVisibility(false);
     $this->setPagerVisibility(false);
     return parent::_prepareColumns();
 }
开发者ID:tobias-forkel,项目名称:Forkel_Grids,代码行数:9,代码来源:Grid.php


示例11: _prepareColumns

 protected function _prepareColumns()
 {
     $this->addColumn('month', array('header' => Mage::helper('compta_invoice')->__('Mois'), 'align' => 'left', 'index' => 'month'));
     $this->addColumn('amount', array('header' => Mage::helper('compta_invoice')->__('Montant BRUT'), 'align' => 'left', 'index' => 'amount', 'renderer' => 'Compta_Invoice_Block_Adminhtml_Renderer_Amount'));
     $this->addColumn('amount_net', array('header' => Mage::helper('compta_invoice')->__('Montant NET'), 'align' => 'left', 'index' => 'amount_net', 'renderer' => 'Compta_Invoice_Block_Adminhtml_Renderer_Amount'));
     $this->setFilterVisibility(false);
     $this->setPagerVisibility(false);
     return parent::_prepareColumns();
 }
开发者ID:nverhoye,项目名称:mage-compta,代码行数:9,代码来源:Month.php


示例12: _prepareColumns

 protected function _prepareColumns()
 {
     $this->addColumn('number', array('header' => Mage::helper('compta_invoice')->__('Numéro'), 'align' => 'left', 'index' => 'number'));
     $this->addColumn('nom', array('header' => Mage::helper('compta_invoice')->__('Client'), 'align' => 'left', 'index' => 'nom'));
     $this->addColumn('amount', array('header' => Mage::helper('compta_invoice')->__('Montant'), 'align' => 'left', 'index' => 'amount', 'renderer' => 'Compta_Invoice_Block_Adminhtml_Renderer_Amount'));
     $this->addColumn('payment_date', array('header' => Mage::helper('compta_invoice')->__('Date de paiement'), 'index' => 'payment_date', 'type' => 'date'));
     $this->setFilterVisibility(false);
     $this->setPagerVisibility(false);
     return parent::_prepareColumns();
 }
开发者ID:nverhoye,项目名称:mage-compta,代码行数:10,代码来源:Last.php


示例13: _prepareCollection

 protected function _prepareCollection()
 {
     $collection = Mage::getResourceModel('affiliateplus/action_collection');
     $collection->getSelect()->reset(Zend_Db_Select::COLUMNS)->columns(array('referer' => 'domain', 'clicks' => 'SUM(totals)', 'uniques' => 'SUM(is_unique)'))->group('referer')->order('clicks DESC');
     if ($storeId = $this->getRequest()->getParam('store')) {
         $collection->addFieldToFilter('store_id', $storeId);
     }
     $this->setCollection($collection);
     return parent::_prepareCollection();
 }
开发者ID:billadams,项目名称:forever-frame,代码行数:10,代码来源:Referers.php


示例14: _prepareColumns

 protected function _prepareColumns()
 {
     $this->addColumn('customer', array('header' => $this->__('Customer'), 'sortable' => false, 'index' => 'customer', 'default' => $this->__('Guest')));
     $this->addColumn('items', array('header' => $this->__('Items'), 'align' => 'right', 'type' => 'number', 'sortable' => false, 'index' => 'items_count'));
     $baseCurrencyCode = Mage::app()->getStore((int) $this->getParam('store'))->getBaseCurrencyCode();
     $this->addColumn('total', array('header' => $this->__('Grand Total'), 'align' => 'right', 'sortable' => false, 'type' => 'currency', 'currency_code' => $baseCurrencyCode, 'index' => 'revenue'));
     $this->setFilterVisibility(false);
     $this->setPagerVisibility(false);
     return parent::_prepareColumns();
 }
开发者ID:codercv,项目名称:urbansurprisedev,代码行数:10,代码来源:Grid.php


示例15: _prepareColumns

 protected function _prepareColumns()
 {
     $this->addColumn('name', array('header' => $this->__('Customer Name'), 'sortable' => false, 'index' => 'name'));
     $this->addColumn('orders_count', array('header' => $this->__('Number of Orders'), 'sortable' => false, 'index' => 'orders_count', 'type' => 'number'));
     $baseCurrencyCode = (string) Mage::app()->getStore((int) $this->getParam('store'))->getBaseCurrencyCode();
     $this->addColumn('orders_avg_amount', array('header' => $this->__('Average Order Amount'), 'align' => 'right', 'sortable' => false, 'type' => 'currency', 'currency_code' => $baseCurrencyCode, 'index' => 'orders_avg_amount', 'renderer' => 'adminhtml/report_grid_column_renderer_currency'));
     $this->addColumn('orders_sum_amount', array('header' => $this->__('Total Order Amount'), 'align' => 'right', 'sortable' => false, 'type' => 'currency', 'currency_code' => $baseCurrencyCode, 'index' => 'orders_sum_amount', 'renderer' => 'adminhtml/report_grid_column_renderer_currency'));
     $this->setFilterVisibility(false);
     $this->setPagerVisibility(false);
     return parent::_prepareColumns();
 }
开发者ID:jpbender,项目名称:mage_virtual,代码行数:11,代码来源:Newest.php


示例16: _prepareCollection

 protected function _prepareCollection()
 {
     $collection = Mage::getResourceModel('affiliateplus/account_collection');
     $transactionTable = $collection->getTable('affiliateplus/transaction');
     $collection->getSelect()->joinLeft(array('ts' => $transactionTable), 'main_table.account_id = ts.account_id AND ts.type = 3', array('amount' => 'SUM(ts.total_amount)', 'num_order_placed' => 'COUNT(ts.transaction_id)'))->where('ts.status = 1')->group('ts.account_id')->order('amount DESC');
     if ($storeId = $this->getRequest()->getParam('store')) {
         $collection->setStoreId($storeId);
         $collection->getSelect()->where("ts.store_id = {$storeId}");
     }
     $this->setCollection($collection);
     return parent::_prepareCollection();
 }
开发者ID:bigtailbear14,项目名称:rosstheme,代码行数:12,代码来源:Magestore_Affiliateplusstatistic_Block_Grids_Affiliates.php


示例17: _prepareColumns

 /**
  * Prepares the columns and specifies
  * the templates to use.
  * 
  * @return Faett_Piwik_Block_Adminhtml_Dashboard_Tab_Live_User The instance
  */
 protected function _prepareColumns()
 {
     // add a column for the visitor data
     $this->addColumn('visitor', array('header' => Mage::helper('piwik')->__('Visitor'), 'sortable' => false, 'renderer' => 'piwik/adminhtml_report_grid_column_renderer_generic', 'tmpl' => 'piwik/report/grid/column/renderer/visitor.phtml', 'width' => 200));
     // add a column for the referer data
     $this->addColumn('referer', array('header' => Mage::helper('piwik')->__('Referer'), 'sortable' => false, 'renderer' => 'piwik/adminhtml_report_grid_column_renderer_generic', 'tmpl' => 'piwik/report/grid/column/renderer/referer.phtml'));
     // add a column for the pages visited
     $this->addColumn('pages', array('header' => Mage::helper('piwik')->__('Pages'), 'sortable' => false, 'renderer' => 'piwik/adminhtml_report_grid_column_renderer_generic', 'tmpl' => 'piwik/report/grid/column/renderer/pages.phtml'));
     // turn off filter and pager
     $this->setFilterVisibility(false);
     $this->setPagerVisibility(false);
     // call the method of the parent class
     return parent::_prepareColumns();
 }
开发者ID:BGCX067,项目名称:faett-piwik-svn-to-git,代码行数:20,代码来源:Tracking.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Mage_Adminhtml_Block_Report_Grid类代码示例发布时间:2022-05-23
下一篇:
PHP Mage_Adminhtml_Block_Catalog_Form类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap