mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
add examples for more configuration values
This commit is contained in:
parent
87ead99f34
commit
d08940f1ac
|
@ -16,6 +16,25 @@ $EXT_CONF['example'] = array(
|
|||
'title'=>'Example check box',
|
||||
'type'=>'checkbox',
|
||||
),
|
||||
'list' => array(
|
||||
'title'=>'Example select menu from options',
|
||||
'type'=>'select',
|
||||
'options' => array('Option 1', 'Option 2', 'Option 3'),
|
||||
'multiple' => true,
|
||||
'size' => 2,
|
||||
),
|
||||
'categories' => array(
|
||||
'title'=>'Example select menu from categories',
|
||||
'type'=>'select',
|
||||
'internal'=>'categories',
|
||||
'multiple' => true,
|
||||
),
|
||||
'users' => array(
|
||||
'title'=>'Example select menu from users',
|
||||
'type'=>'select',
|
||||
'internal'=>'users',
|
||||
'multiple' => true,
|
||||
),
|
||||
),
|
||||
'constraints' => array(
|
||||
'depends' => array('php' => '5.4.4-', 'seeddms' => '4.3.0-'),
|
||||
|
|
Loading…
Reference in New Issue
Block a user