コード例 #1
0
ファイル: Grid.php プロジェクト: zztimur/reverb-magento
 protected function _prepareColumns()
 {
     $this->addColumn('code', array('header' => $this->_getTranslationHelper()->__('Code'), 'align' => 'left', 'index' => 'code', 'type' => 'text'));
     $this->addColumn('status', array('header' => $this->_getTranslationHelper()->__('Status'), 'align' => 'left', 'index' => 'status', 'type' => 'options', 'options' => Mage::getModel('reverb_process_queue/source_task_status')->getOptionArray()));
     $this->addColumn('object', array('header' => $this->_getTranslationHelper()->__('Object'), 'align' => 'left', 'index' => 'object', 'type' => 'text'));
     $this->addColumn('method', array('header' => $this->_getTranslationHelper()->__('Method'), 'align' => 'left', 'index' => 'method', 'type' => 'text'));
     /*
             $this->addColumn('serialized_arguments_object', array(
                 'header'    => $this->_getTranslationHelper()->__('Serialized Arguments Object'),
                 'width'     => '250',
                 'align'     => 'left',
                 'index'     => 'serialized_arguments_object',
                 'type'      => 'text'
             ));
     */
     $this->addColumn('status_message', array('header' => $this->_getTranslationHelper()->__('Status Message'), 'width' => '250', 'align' => 'left', 'index' => 'status_message', 'type' => 'text'));
     $this->addColumn('created_at', array('header' => $this->_getTranslationHelper()->__('Created At'), 'align' => 'left', 'index' => 'created_at', 'type' => 'datetime'));
     $this->addColumn('last_executed_at', array('header' => $this->_getTranslationHelper()->__('Last Executed At'), 'align' => 'left', 'index' => 'last_executed_at', 'type' => 'datetime'));
     return parent::_prepareColumns();
 }
コード例 #2
0
ファイル: Grid.php プロジェクト: zztimur/reverb-magento
 public function setCollection($collection)
 {
     $collection->addCodeFilter('listing_image_sync');
     parent::setCollection($collection);
 }
コード例 #3
0
ファイル: Grid.php プロジェクト: zztimur/reverb-magento
 public function setCollection($collection)
 {
     $collection->addCodeFilter('order_update');
     parent::setCollection($collection);
 }
コード例 #4
0
ファイル: Grid.php プロジェクト: zztimur/reverb-magento
 public function setCollection($collection)
 {
     $collection->addCodeFilter(array('order_creation', Reverb_ReverbSync_Model_Sync_Shipment_Tracking::JOB_CODE));
     parent::setCollection($collection);
 }