AdminPageFramework_Form_Model___FormatFieldsets::get PHP Метод

get() публичный Метод

public get ( )
    public function get()
    {
        $this->aFieldsets = $this->_getFieldsetsFormatted($this->aFieldsets, $this->aSectionsets, $this->sCapability);
        return $this->_getDynamicElementsAddedToFieldsets();
    }

Usage Example

 protected function _formatElementDefinitions(array $aSavedData)
 {
     $_oSectionsetsFormatter = new AdminPageFramework_Form_Model___FormatSectionsets($this->aSectionsets, $this->aArguments['structure_type'], $this->sCapability, $this->aCallbacks, $this);
     $this->aSectionsets = $_oSectionsetsFormatter->get();
     $_oFieldsetsFormatter = new AdminPageFramework_Form_Model___FormatFieldsets($this->aFieldsets, $this->aSectionsets, $this->aArguments['structure_type'], $this->aSavedData, $this->sCapability, $this->aCallbacks, $this);
     $this->aFieldsets = $_oFieldsetsFormatter->get();
 }