AdminPageFramework_Form_View___Fieldset::_getExtras PHP Method

_getExtras() private method

private _getExtras ( $aField, $iFieldsCount )
    private function _getExtras($aField, $iFieldsCount)
    {
        $_aOutput = array();
        $_oFieldDescription = new AdminPageFramework_Form_View___Description($aField['description'], 'admin-page-framework-fields-description');
        $_aOutput[] = $_oFieldDescription->get();
        $_aOutput[] = $this->_getDynamicElementFlagFieldInputTag($aField);
        $_aOutput[] = $this->_getFieldScripts($aField, $iFieldsCount);
        return implode(PHP_EOL, array_filter($_aOutput));
    }