コード例 #1
0
ファイル: Tabs.php プロジェクト: nayanchamp/magento2
 /**
  * Initialize tab
  *
  */
 public function __construct()
 {
     parent::__construct();
     $this->setId('billing_agreement_view_tabs');
     $this->setDestElementId('billing_agreement_view');
     $this->setTitle($this->__('Billing Agreement View'));
 }
コード例 #2
0
ファイル: Edit.php プロジェクト: nemphys/magento2
 public function __construct()
 {
     parent::__construct();
     $this->setId('role_info_tabs');
     $this->setDestElementId('role_edit_form');
     $this->setTitle(Mage::helper('Mage_User_Helper_Data')->__('Role Information'));
 }
コード例 #3
0
ファイル: Users.php プロジェクト: nemphys/magento2
 public 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);
 }