AdminPageFramework_FieldType_size::_getSizeAttributes PHP Метод

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

private _getSizeAttributes ( array $aField, array $aBaseAttributes, $sLabelKey = '' )
$aField array
$aBaseAttributes array
    private function _getSizeAttributes(array $aField, array $aBaseAttributes, $sLabelKey = '')
    {
        return array('type' => 'number', 'id' => $aField['input_id'] . '_' . ('' !== $sLabelKey ? $sLabelKey . '_' : '') . 'size', 'name' => $aField['_input_name'] . ('' !== $sLabelKey ? "[{$sLabelKey}]" : '') . '[size]', 'value' => $this->getElement($aField, array('value', 'size'), '')) + $this->getElementAsArray($aField, '' === $sLabelKey ? array('attributes', 'size') : array('attributes', $sLabelKey, 'size'), $this->aDefaultKeys['attributes']['size']) + $aBaseAttributes;
    }