AdminPageFramework_Form_View___FieldsetRows::get PHP Method

get() public method

public get ( $bTableRow = true )
    public function get($bTableRow = true)
    {
        $_sMethodName = $this->getAOrB($bTableRow, '_getFieldsetRow', '_getFieldset');
        $_sOutput = '';
        foreach ($this->aFieldsetsPerSection as $_aFieldset) {
            $_oFieldsetOutputFormatter = new AdminPageFramework_Form_Model___Format_FieldsetOutput($_aFieldset, $this->iSectionIndex, $this->aFieldTypeDefinitions);
            $_aFieldset = $_oFieldsetOutputFormatter->get();
            if (!$_aFieldset['if']) {
                continue;
            }
            $_sOutput .= call_user_func_array(array($this, $_sMethodName), array($_aFieldset));
        }
        return $_sOutput;
    }

Usage Example

 private function _getSectionContent($_iSectionIndex)
 {
     if ($this->aSectionset['content']) {
         return $this->_getCustomSectionContent();
     }
     $_oFieldsets = new AdminPageFramework_Form_View___FieldsetRows($this->aFieldsetsPerSection, $_iSectionIndex, $this->aSavedData, $this->aFieldErrors, $this->aFieldTypeDefinitions, $this->aCallbacks, $this->oMsg);
     return $_oFieldsets->get();
 }
All Usage Examples Of AdminPageFramework_Form_View___FieldsetRows::get
AdminPageFramework_Form_View___FieldsetRows