1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-24 13:52:56 +02:00

feat(core): Forms API - add new routable_select field #300

This commit is contained in:
Awilum
2019-11-20 20:53:34 +03:00
parent 9133266e7c
commit ca477861c1

View File

@@ -174,6 +174,9 @@ class Forms
case 'heading':
$form_field = $this->headingField($field_id, $property);
break;
case 'routable_select':
$form_field = $this->routableSelectField($field_id, $field_name, [true => __('admin_yes'), false => __('admin_no')], (is_string($form_value) ? true : ($form_value ? true : false)), $property);
break;
case 'tags':
$form_field = $this->tagsField($field_id, $field_name, $form_value, $property);
break;
@@ -317,6 +320,36 @@ class Forms
return $field;
}
/**
* Routable select field
*
* @param string $field_id Field ID
* @param string $field_name Field name
* @param array $options Field options
* @param mixed $value Field value
* @param array $property Field property
*
* @return string Returns field
*
* @access protected
*/
protected function routableSelectField(string $field_id, string $field_name, array $options, $value, array $property) : string
{
$title = isset($property['title']) ? $property['title'] : '';
$size = isset($property['size']) ? $property['size'] : '';
$property['attributes']['id'] = $field_id;
$property['attributes']['class'] .= ' ' . $this->field_class;
$field = '<div class="form-group ' . $size . '">';
$field .= ($property['title'] ? Form::label($field_id, __($title)) : '');
$field .= Form::select($field_name, $options, $value, $property['attributes']);
$field .= ($property['help'] ? '<small class="form-text text-muted">' . __($property['help']) . '</small>' : '');
$field .= '</div>';
return $field;
}
/**
* Select field
*