use "possible values" option in upload
This commit is contained in:
parent
7389c976d6
commit
5594631601
|
@ -227,12 +227,17 @@ class sambaGroupMapping extends baseModule {
|
||||||
'sambaGroupType',
|
'sambaGroupType',
|
||||||
'description');
|
'description');
|
||||||
// upload fields
|
// upload fields
|
||||||
|
// search existing Samba 3 domains
|
||||||
|
$domains = search_domains($_SESSION['config']->get_domainSuffix());
|
||||||
|
$domainNames = array();
|
||||||
|
for ($i = 0; $i < sizeof($domains); $i++) $domainNames[] = $domains[$i]->name;
|
||||||
$return['upload_columns'] = array(
|
$return['upload_columns'] = array(
|
||||||
array(
|
array(
|
||||||
'name' => 'sambaGroupMapping_domain',
|
'name' => 'sambaGroupMapping_domain',
|
||||||
'description' => _('Samba 3 domain name'),
|
'description' => _('Samba 3 domain name'),
|
||||||
'help' => 'sambaDomainName',
|
'help' => 'sambaDomainName',
|
||||||
'example' => _('Domain1'),
|
'example' => $domainNames[0],
|
||||||
|
'values' => implode(", ", $domainNames),
|
||||||
'required' => true
|
'required' => true
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
|
@ -251,6 +256,7 @@ class sambaGroupMapping extends baseModule {
|
||||||
'name' => 'sambaGroupMapping_groupType',
|
'name' => 'sambaGroupMapping_groupType',
|
||||||
'description' => _('Samba 3 group type'),
|
'description' => _('Samba 3 group type'),
|
||||||
'help' => 'type',
|
'help' => 'type',
|
||||||
|
'values' => implode(", ", array_keys($this->sambaGroupTypes) + $this->sambaGroupTypes),
|
||||||
'example' => '2'
|
'example' => '2'
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
@ -276,7 +282,7 @@ class sambaGroupMapping extends baseModule {
|
||||||
'type' => array(
|
'type' => array(
|
||||||
"ext" => "FALSE",
|
"ext" => "FALSE",
|
||||||
"Headline" => _("Samba group type"),
|
"Headline" => _("Samba group type"),
|
||||||
"Text" => _("Windows group type.") . "<br><br><b>" . _("Possible values: ") . "</b>" . implode(", ", array_keys($this->sambaGroupTypes) + $this->sambaGroupTypes)));
|
"Text" => _("Windows group type.")));
|
||||||
|
|
||||||
return $return;
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue