mirror of
https://github.com/flextype/flextype.git
synced 2025-08-11 15:44:49 +02:00
Admin Panel: Entries Manager - select field added
This commit is contained in:
@@ -410,6 +410,11 @@ class EntriesManager
|
||||
$form_element = Form::textarea($element, $content, $property['attributes']);
|
||||
break;
|
||||
|
||||
// Selectbox field
|
||||
case 'select':
|
||||
$form_element = Form::select($form_element_name, $property['options'], $form_value, $property['attributes']);
|
||||
break;
|
||||
|
||||
// Template select field for selecting entry template
|
||||
case 'template_select':
|
||||
$form_element = Form::select($form_element_name, Themes::getTemplates(), $form_value, $property['attributes']);
|
||||
|
Reference in New Issue
Block a user