本文整理汇总了PHP中Mage_Index_Model_Process::getUpdateRequiredOptions方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Index_Model_Process::getUpdateRequiredOptions方法的具体用法?PHP Mage_Index_Model_Process::getUpdateRequiredOptions怎么用?PHP Mage_Index_Model_Process::getUpdateRequiredOptions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Index_Model_Process
的用法示例。
在下文中一共展示了Mage_Index_Model_Process::getUpdateRequiredOptions方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _prepareColumns
/**
* Prepare grid columns
*/
protected function _prepareColumns()
{
$baseUrl = $this->getUrl();
$this->addColumn('indexer_code', array('header' => Mage::helper('index')->__('Index'), 'width' => '180', 'align' => 'left', 'index' => 'name', 'sortable' => false));
$this->addColumn('description', array('header' => Mage::helper('index')->__('Description'), 'align' => 'left', 'index' => 'description', 'sortable' => false));
$this->addColumn('mode', array('header' => Mage::helper('index')->__('Mode'), 'width' => '150', 'align' => 'left', 'index' => 'mode', 'type' => 'options', 'options' => $this->_processModel->getModesOptions()));
$this->addColumn('status', array('header' => Mage::helper('index')->__('Status'), 'width' => '120', 'align' => 'left', 'index' => 'status', 'type' => 'options', 'options' => $this->_processModel->getStatusesOptions(), 'frame_callback' => array($this, 'decorateStatus')));
$this->addColumn('update_required', array('header' => Mage::helper('index')->__('Update Required'), 'sortable' => false, 'width' => '120', 'align' => 'left', 'index' => 'update_required', 'type' => 'options', 'options' => $this->_processModel->getUpdateRequiredOptions(), 'frame_callback' => array($this, 'decorateUpdateRequired')));
$this->addColumn('ended_at', array('header' => Mage::helper('index')->__('Updated At'), 'type' => 'datetime', 'width' => '180', 'align' => 'left', 'index' => 'ended_at', 'frame_callback' => array($this, 'decorateDate')));
$this->addColumn('action', array('header' => Mage::helper('index')->__('Action'), 'width' => '100', 'type' => 'action', 'getter' => 'getId', 'actions' => array(array('caption' => Mage::helper('index')->__('Reindex Data'), 'url' => array('base' => '*/*/reindexProcess'), 'field' => 'process')), 'filter' => false, 'sortable' => false, 'is_system' => true));
return parent::_prepareColumns();
}