= Yii::t('AnimalManagementModule.base', 'Configure intake/profile field definitions used by Animal Management.') ?>
= Yii::t('AnimalManagementModule.base', 'ID is hidden by default unless selected here.') ?>
| = Yii::t('AnimalManagementModule.base', 'Field Key') ?> | = Yii::t('AnimalManagementModule.base', 'Label') ?> | = Yii::t('AnimalManagementModule.base', 'Group') ?> | = Yii::t('AnimalManagementModule.base', 'Input Type') ?> | = Yii::t('AnimalManagementModule.base', 'Required') ?> | = Yii::t('AnimalManagementModule.base', 'Active') ?> | = Yii::t('AnimalManagementModule.base', 'Visibility') ?> | = Yii::t('AnimalManagementModule.base', 'Sort') ?> | = Yii::t('AnimalManagementModule.base', 'Remove') ?> |
|---|---|---|---|---|---|---|---|---|
| = Html::hiddenInput("FieldDefinitionSettingsForm[rows][$index][id]", (int)$row['id']) ?> = Html::hiddenInput("FieldDefinitionSettingsForm[rows][$index][field_key]", (string)$row['field_key']) ?> = Html::encode((string)$row['field_key']) ?> = Yii::t('AnimalManagementModule.base', 'Core') ?> | = Html::textInput("FieldDefinitionSettingsForm[rows][$index][label]", (string)$row['label'], ['class' => 'form-control input-sm']) ?> | = Html::textInput("FieldDefinitionSettingsForm[rows][$index][group_key]", (string)$row['group_key'], ['class' => 'form-control input-sm']) ?> | = Html::encode((string)$row['input_type']) ?> = Html::hiddenInput("FieldDefinitionSettingsForm[rows][$index][input_type]", (string)$row['input_type']) ?> | = Html::checkbox("FieldDefinitionSettingsForm[rows][$index][required]", !empty($row['required']), ['disabled' => $isCore]) ?> = Html::hiddenInput("FieldDefinitionSettingsForm[rows][$index][required]", !empty($row['required']) ? 1 : 0) ?> | = Html::checkbox("FieldDefinitionSettingsForm[rows][$index][is_active]", !empty($row['is_active']), ['disabled' => $isCore]) ?> = Html::hiddenInput("FieldDefinitionSettingsForm[rows][$index][is_active]", !empty($row['is_active']) ? 1 : 0) ?> | = Html::dropDownList( "FieldDefinitionSettingsForm[rows][$index][visibility]", (string)$row['visibility'], FieldDefinitionSettingsForm::visibilityOptions(), ['class' => 'form-control input-sm'] ) ?> | = Html::input('number', "FieldDefinitionSettingsForm[rows][$index][sort_order]", (int)$row['sort_order'], ['class' => 'form-control input-sm', 'style' => 'max-width:90px;']) ?> | = Html::checkbox("FieldDefinitionSettingsForm[rows][$index][remove]", false) ?> - |