AdminPageFramework_Form_Model___FormatFieldsets::_getNormalFieldsetsFormatted PHP Метод

_getNormalFieldsetsFormatted() приватный Метод

private _getNormalFieldsetsFormatted ( $aItems, $sCapability, $aSectionsets, $_abSectionRepeatable )
    private function _getNormalFieldsetsFormatted($aItems, $sCapability, $aSectionsets, $_abSectionRepeatable)
    {
        $_aNewItems = array();
        foreach ($aItems as $_sFieldID => $_aFieldset) {
            $_aFieldset = $this->_getFieldsetFormatted($_aFieldset, $aSectionsets, $sCapability, count($_aNewItems), null, $_abSectionRepeatable, $this->oCallerForm);
            if (empty($_aFieldset)) {
                continue;
            }
            $_aNewItems[$_aFieldset['field_id']] = $_aFieldset;
        }
        uasort($_aNewItems, array($this, 'sortArrayByKey'));
        return $_aNewItems;
    }