mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-11 09:35:00 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
663d660e29
|
@ -1126,6 +1126,7 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
|
|||
(!empty($value['id']) ? ' id="'.$value['id'].'"' : '').
|
||||
(!empty($value['name']) ? ' name="'.$value['name'].'"' : '').
|
||||
(!empty($value['class']) ? ' class="'.$value['class'].'"' : '').
|
||||
(!empty($value['placeholder']) ? ' data-placeholder="'.$value['placeholder'].'"' : '').
|
||||
(!empty($value['multiple']) ? ' multiple' : '');
|
||||
if(!empty($value['attributes']) && is_array($value['attributes']))
|
||||
foreach($value['attributes'] as $a)
|
||||
|
|
|
@ -314,7 +314,8 @@ $(document).ready( function() {
|
|||
'element'=>'select',
|
||||
'id'=>'selector',
|
||||
'class'=>'chzn-select',
|
||||
'options'=>$options
|
||||
'options'=>$options,
|
||||
'placeholder'=>getMLText('select_groups'),
|
||||
)
|
||||
);
|
||||
?>
|
||||
|
|
|
@ -367,7 +367,7 @@ $(document).ready( function() {
|
|||
'name'=>'groups[]',
|
||||
'class'=>'chzn-select',
|
||||
'multiple'=>true,
|
||||
'attributes'=>array(array('data-placeholder', getMLText('select_groups'))),
|
||||
'placeholder'=>getMLText('select_groups'),
|
||||
'options'=>$options
|
||||
)
|
||||
);
|
||||
|
@ -611,7 +611,8 @@ $(document).ready( function() {
|
|||
'element'=>'select',
|
||||
'id'=>'selector',
|
||||
'class'=>'chzn-select',
|
||||
'options'=>$options
|
||||
'options'=>$options,
|
||||
'placeholder'=>getMLText('select_users'),
|
||||
)
|
||||
);
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue
Block a user