AdminPageFramework_Form_Model___Format_Fields::_getStoredInputFieldValue PHP Метод

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

private _getStoredInputFieldValue ( $aField, $aOptions )
    private function _getStoredInputFieldValue($aField, $aOptions)
    {
        $_aFieldPath = $aField['_field_path_array'];
        if (!isset($aField['section_id']) || '_default' === $aField['section_id']) {
            return $this->getElement($aOptions, $_aFieldPath, null);
        }
        $_aSectionPath = $aField['_section_path_array'];
        if (isset($aField['_section_index'])) {
            return $this->getElement($aOptions, array_merge($_aSectionPath, array($aField['_section_index']), $_aFieldPath), null);
        }
        return $this->getElement($aOptions, array_merge($_aSectionPath, $_aFieldPath), null);
    }