コード例 #1
0
 /**
  * Constructor helper
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setLegend($this->getLabel());
     $this->_addElementTypes();
     $this->_addFields();
     $this->addClass('element-' . static::CONTROL_TYPE);
 }
コード例 #2
0
ファイル: Fieldset.php プロジェクト: mage2pro/core
 /**
  * 2015-11-17
  * @override
  * @see \Magento\Framework\Data\Form\AbstractForm::_construct()
  * @used-by \Magento\Framework\Data\Form\AbstractForm::__construct()
  * @return void
  */
 protected function _construct()
 {
     $this->addClass('df-fieldset');
     parent::_construct();
 }
コード例 #3
0
ファイル: Column.php プロジェクト: shabbirvividads/magento2
 /**
  * Constructor helper
  *
  * @return void
  */
 public function _construct()
 {
     parent::_construct();
     $this->_addElementTypes();
     $this->addClass(self::CONTROL_TYPE);
 }