AdminPageFramework_FieldType_text::getField PHP Method

getField() protected method

protected getField ( $aField )
    protected function getField($aField)
    {
        $_aOutput = array();
        foreach ((array) $aField['label'] as $_sKey => $_sLabel) {
            $_aOutput[] = $this->_getFieldOutputByLabel($_sKey, $_sLabel, $aField);
        }
        $_aOutput[] = "<div class='repeatable-field-buttons'></div>";
        return implode('', $_aOutput);
    }

Usage Example

 protected function getField($aField)
 {
     return parent::getField($aField);
 }
All Usage Examples Of AdminPageFramework_FieldType_text::getField
AdminPageFramework_FieldType_text