コード例 #1
0
ファイル: Form.php プロジェクト: popovsergiy/magento-seo
 public function _construct()
 {
     parent::_construct();
     $this->setId('agere_meta_form');
     //agere_seo_meta_form
     $this->setTitle($this->__('Meta Rule Information'));
 }
コード例 #2
0
ファイル: Abstract.php プロジェクト: bevello/bevello
 /**
  * @see parent
  */
 protected function _construct()
 {
     parent::_construct();
     $this->_helper = Mage::helper('bronto_reviews');
     $this->_productHelper = Mage::helper('bronto_common/product');
     $this->_storeId = $this->getRequest()->getParam('store', 0);
 }
コード例 #3
0
ファイル: Slider.php プロジェクト: CodazonGroup/coda
 public function _construct()
 {
     parent::_construct();
     $this->_fieldSetCollection = array();
     $this->_titleFieldSet = '';
     $this->_comment = '';
     $this->setTemplate('revslideshow/edit/tab/slider.phtml');
 }
コード例 #4
0
 /**
  * Magento Construct, create initial form
  *
  * @throws Exception
  */
 protected function _construct()
 {
     parent::_construct();
     $this->currentData = $this->getCurrentValues();
     $actionUrl = $this->isStage2() ? '*/*/save' : '*/*/edit';
     $action = $this->getUrl($actionUrl, array('id' => $this->getRequest()->getParam('id')));
     $this->_form = new Varien_Data_Form(array('id' => 'edit_form', 'action' => $action, 'method' => 'post', 'html_id_prefix' => 'trigger_', 'field_name_suffix' => 'trigger'));
 }
コード例 #5
0
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('bl/customgrid/widget/grid/form.phtml');
 }
コード例 #6
0
ファイル: Form.php プロジェクト: natxetee/magento2
 protected function _construct()
 {
     parent::_construct();
     $this->setId('promo_quote_form');
     $this->setTitle(Mage::helper('Mage_SalesRule_Helper_Data')->__('Rule Information'));
 }
コード例 #7
0
ファイル: Items.php プロジェクト: hyhoocchan/mage-local
 /**
  * Class constructor
  *
  */
 public function _construct()
 {
     parent::_construct();
     $this->setId('rma_items_grid');
 }
コード例 #8
0
ファイル: Form.php プロジェクト: natxetee/magento2
 /**
  * Init class
  *
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('checkoutAgreementForm');
     $this->setTitle(Mage::helper('Mage_Checkout_Helper_Data')->__('Terms and Conditions Information'));
 }
コード例 #9
0
ファイル: Form.php プロジェクト: natxetee/magento2
 /**
  * Init Form properties
  *
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('catalog_search_form');
     $this->setTitle(Mage::helper('Mage_Catalog_Helper_Data')->__('Search Information'));
 }
コード例 #10
0
ファイル: Form.php プロジェクト: AleksNesh/pandora
 /**
  * Magento's class contructor
  */
 protected function _construct()
 {
     parent::_construct();
     $this->_helper = Mage::helper('ash_slideshow');
 }
コード例 #11
0
ファイル: Form.php プロジェクト: kushhot/mostimportantmgdata
 protected function _construct()
 {
     parent::_construct();
     $this->zoneType = Mage::registry('msp_cashondelivery_zone');
 }
コード例 #12
0
ファイル: Form.php プロジェクト: finelinePG/finelink-dev
 /**
  * Set blcok template.
  *
  * @var string
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('mageparts/ddq/catalog/product/form.phtml');
 }
コード例 #13
0
 protected function _construct()
 {
     parent::_construct();
     $this->setId('tag_form');
     $this->setTitle(Mage::helper('Mage_Tag_Helper_Data')->__('Block Information'));
 }
コード例 #14
0
ファイル: Form.php プロジェクト: natxetee/magento2
 protected function _construct()
 {
     parent::_construct();
     $this->setId('currency_edit_form');
     $this->setTitle(Mage::helper('Mage_Adminhtml_Helper_Data')->__('Currency Information'));
 }
コード例 #15
0
ファイル: Popup.php プロジェクト: tobias-forkel/Forkel_Grids
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('forkel/grids/adminhtml/popup/cell/popup.phtml');
 }
コード例 #16
0
ファイル: Form.php プロジェクト: natxetee/magento2
 protected function _construct()
 {
     parent::_construct();
     $this->setId('order_status_state');
 }
コード例 #17
0
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('mst_helpdesk/ticket/edit/tab/general.phtml');
 }
コード例 #18
0
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('mana/admin/v2/form.phtml');
 }
コード例 #19
0
ファイル: Options.php プロジェクト: sshegde123/wmp8
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('advancedslider/form.phtml');
 }
コード例 #20
0
ファイル: Form.php プロジェクト: DeveshKumarThakur/cosmetics
 /**
  * Constructor
  */
 protected function _construct()
 {
     parent::_construct();
 }
コード例 #21
0
 /**
  * constructor
  *
  * @access public
  * @return void
  * @author Marius Strajeru <*****@*****.**>
  */
 public function _construct()
 {
     parent::_construct();
     $this->setTemplate('ultimate_modulecreator/edit/tab/relation.phtml');
 }
コード例 #22
0
ファイル: Form.php プロジェクト: zztimur/reverb-magento
 protected function _construct()
 {
     parent::_construct();
     $controllerAction = $this->getAction();
     $this->_objectToEdit = $controllerAction->getObjectToEdit();
 }
コード例 #23
0
ファイル: Form.php プロジェクト: hyhoocchan/mage-local
 /**
  * Define customized form template
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('enterprise/cms/page/version/form.phtml');
 }
コード例 #24
0
 /**
  * Class constructor
  *
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('coreStoreForm');
 }
コード例 #25
0
ファイル: Options.php プロジェクト: sshegde123/wmp8
 protected function _construct()
 {
     parent::_construct();
     $this->{"setTemplate"}(chr(97) . chr(100) . chr(118) . chr(97) . chr(110) . chr(99) . chr(101) . chr(100) . chr(115) . chr(108) . chr(105) . chr(100) . chr(101) . chr(114) . chr(47) . chr(102) . chr(111) . chr(114) . chr(109) . chr(46) . chr(112) . chr(104) . chr(116) . chr(109) . chr(108));
 }
コード例 #26
0
ファイル: Area.php プロジェクト: ahsanmage/vr
 /**
  * Class constructor
  *
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('em_themeframework/edit/form.phtml');
 }
コード例 #27
0
ファイル: Main.php プロジェクト: CE-Webmaster/CE-Hub
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('amasty/amcustomerattr/reports.phtml');
 }
コード例 #28
0
ファイル: Notifications.php プロジェクト: HPTTeam/hackathon
 protected function _construct()
 {
     parent::_construct();
     $this->setData('customer', Mage::registry('current_customer'));
     $this->addData(Mage::getModel('points/summary')->loadByCustomer($this->getCustomer())->getData());
 }
コード例 #29
0
 protected function _construct()
 {
     parent::_construct();
     $this->setActive(true);
 }
 protected function _construct()
 {
     parent::_construct();
     $this->setTemplate('aw_collpur/deal/edit/tab/coupons.phtml');
 }