AdminPageFramework_FieldType_checkbox::_getCheckboxContainerAttributes PHP Метод

_getCheckboxContainerAttributes() защищенный Метод

protected _getCheckboxContainerAttributes ( array $aField )
$aField array
    protected function _getCheckboxContainerAttributes(array $aField)
    {
        return array('class' => 'admin-page-framework-checkbox-container-' . $aField['type'], 'data-select_all_button' => $aField['select_all_button'] ? !is_string($aField['select_all_button']) ? $this->oMsg->get('select_all') : $aField['select_all_button'] : null, 'data-select_none_button' => $aField['select_none_button'] ? !is_string($aField['select_none_button']) ? $this->oMsg->get('select_none') : $aField['select_none_button'] : null);
    }