예제 #1
0
 /**
  * Initialize tabs and define tabs block settings
  */
 public function _construct()
 {
     parent::_construct();
     $this->setId('theme_tabs');
     $this->setDestElementId('edit_form');
     $this->setTitle($this->__('Theme'));
 }
예제 #2
0
파일: Tabs.php 프로젝트: natxetee/magento2
 /**
  * Initialize tab
  *
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('billing_agreement_view_tabs');
     $this->setDestElementId('billing_agreement_view');
     $this->setTitle($this->__('Billing Agreement View'));
 }
예제 #3
0
 /**
  * Internal constructor.
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('page_tabs');
     $this->setDestElementId('edit_form');
     $this->setTitle($this->__('User Information'));
 }
예제 #4
0
 protected function _construct()
 {
     parent::_construct();
     $roleId = $this->getRequest()->getParam('rid', false);
     $users = Mage::getModel('Mage_User_Model_User')->getCollection()->load();
     $this->setTemplate('role/users.phtml')->assign('users', $users->getItems())->assign('roleId', $roleId);
 }
예제 #5
0
 protected function _construct()
 {
     parent::_construct();
     $this->setId('page_tabs');
     $this->setDestElementId('edit_form');
     $this->setTitle(Mage::helper('Mage_User_Helper_Data')->__('User Information'));
 }
예제 #6
0
 protected function _construct()
 {
     parent::_construct();
     $this->setId('role_info_tabs');
     $this->setDestElementId('role-edit-form');
     $this->setTitle(Mage::helper('Mage_User_Helper_Data')->__('Role Information'));
 }
예제 #7
0
 /**
  * Initialize tab
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('theme_selector_tabs');
     $this->setDestElementId('theme_selector');
     $this->setTitle($this->__('Design & Theme Gallery'));
     $this->setIsHoriz(true);
 }
예제 #8
0
 protected function _construct()
 {
     parent::_construct();
     $this->setId('system_config_dwstree');
     $this->setDestElementId('system_config_form');
 }