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_Adminhtml
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: /**
28: * description
29: *
30: * @category Mage
31: * @package Mage_Adminhtml
32: * @author Magento Core Team <core@magentocommerce.com>
33: */
34: class Mage_Adminhtml_Block_Catalog_Product_Attribute_Set_Toolbar_Add extends Mage_Adminhtml_Block_Template
35: {
36: protected function _construct()
37: {
38: $this->setTemplate('catalog/product/attribute/set/toolbar/add.phtml');
39: }
40:
41: protected function _prepareLayout()
42: {
43: $this->setChild('save_button',
44: $this->getLayout()->createBlock('adminhtml/widget_button')
45: ->setData(array(
46: 'label' => Mage::helper('catalog')->__('Save Attribute Set'),
47: 'onclick' => 'if (addSet.submit()) disableElements(\'save\');',
48: 'class' => 'save'
49: )));
50: $this->setChild('back_button',
51: $this->getLayout()->createBlock('adminhtml/widget_button')
52: ->setData(array(
53: 'label' => Mage::helper('catalog')->__('Back'),
54: 'onclick' => 'setLocation(\''.$this->getUrl('*/*/').'\')',
55: 'class' => 'back'
56: )));
57:
58: $this->setChild('setForm',
59: $this->getLayout()->createBlock('adminhtml/catalog_product_attribute_set_main_formset')
60: );
61: return parent::_prepareLayout();
62: }
63:
64: protected function _getHeader()
65: {
66: return Mage::helper('catalog')->__('Add New Attribute Set');
67: }
68:
69: protected function getSaveButtonHtml()
70: {
71: return $this->getChildHtml('save_button');
72: }
73:
74: protected function getBackButtonHtml()
75: {
76: return $this->getChildHtml('back_button');
77: }
78:
79: protected function getFormHtml()
80: {
81: return $this->getChildHtml('setForm');
82: }
83:
84: protected function getFormId()
85: {
86: return $this->getChild('setForm')->getForm()->getId();
87: }
88: }
89: