1: <?php
2: /**
3: * Magento
4: *
5: * NOTICE OF LICENSE
6: *
7: * This source file is subject to the Open Software License (OSL 3.0)
8: * that is bundled with this package in the file LICENSE.txt.
9: * It is also available through the world-wide-web at this URL:
10: * http://opensource.org/licenses/osl-3.0.php
11: * If you did not receive a copy of the license and are unable to
12: * obtain it through the world-wide-web, please send an email
13: * to license@magentocommerce.com so we can send you a copy immediately.
14: *
15: * DISCLAIMER
16: *
17: * Do not edit or add to this file if you wish to upgrade Magento to newer
18: * versions in the future. If you wish to customize Magento for your
19: * needs please refer to http://www.magentocommerce.com for more information.
20: *
21: * @category Mage
22: * @package Mage_Index
23: * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24: * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25: */
26:
27: class Mage_Index_Block_Adminhtml_Process_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
28: {
29:
30: public function __construct()
31: {
32: $this->_objectId = 'process_id';
33: $this->_controller = 'adminhtml_process';
34: $this->_blockGroup = 'index';
35:
36: parent::__construct();
37:
38: $this->_updateButton('save', 'label', Mage::helper('cms')->__('Save Process'));
39: $this->_addButton('reindex', array(
40: 'label' => Mage::helper('index')->__('Reindex Data'),
41: 'onclick' => "setLocation('{$this->getRunUrl()}')"
42: ));
43: $this->_removeButton('reset');
44: $this->_removeButton('delete');
45: }
46:
47: /**
48: * Get back button url
49: *
50: * @return string
51: */
52: public function getBackUrl()
53: {
54: return $this->getUrl('adminhtml/process/list');
55: }
56:
57: /**
58: * Get process reindex action url
59: *
60: * @return string
61: */
62: public function getRunUrl()
63: {
64: return $this->getUrl('adminhtml/process/reindexProcess', array(
65: 'process' => Mage::registry('current_index_process')->getId()
66: ));
67: }
68:
69: /**
70: * Retrieve text for header element depending on loaded page
71: *
72: * @return string
73: */
74: public function getHeaderText()
75: {
76: $process = Mage::registry('current_index_process');
77: if ($process && $process->getId()) {
78: return Mage::helper('index')->__("'%s' Index Process Information", $process->getIndexer()->getName());
79: }
80: }
81: }
82: