Example #1
0
 /**
  * Load all control values
  *
  * @return $this
  */
 protected function _loadControlsData()
 {
     $this->_data = $this->_configuration->getAllControlsData();
     $this->_prepareControlList($this->_data);
     foreach ($this->_controlList as &$control) {
         $this->_loadControlData($control, 'value', $this->_viewConfig);
         $this->_loadControlData($control, 'default', $this->_viewConfigParent);
     }
     return $this;
 }