X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Finclude%2Fclass_baseSelector.inc;h=68dd3ca036630620cb822c31ef425b06a08aa96c;hb=ec31213715f17cad47d051582e1f73ea1feb85fe;hp=1d35ea4fba22616d1768b27c311c1dd0d58a6c39;hpb=10a0e2e3f06d826c410908ec5bd6f71f33589526;p=gosa.git diff --git a/gosa-core/include/class_baseSelector.inc b/gosa-core/include/class_baseSelector.inc index 1d35ea4fb..68dd3ca03 100644 --- a/gosa-core/include/class_baseSelector.inc +++ b/gosa-core/include/class_baseSelector.inc @@ -31,14 +31,6 @@ class baseSelector { protected $pathMapping; protected $lastState; - // It would be better to get a dn -> [name, description, type] array - // to avoid these tasks be done several times. Skipping for the moment. - #'dc' => 'plugins/departments/images/domain.png', - #'dc' => 'plugins/departments/images/dc.png', - #'l' => 'plugins/departments/images/locality.png', - #'c' => 'plugins/departments/images/country.png', - #'o' => 'plugins/departments/images/organization.png', - #'ou' => 'plugins/departments/images/folder.png', function __construct($bases, $base= "") { @@ -104,6 +96,7 @@ class baseSelector { // Save bases to session for autocompletion session::global_set('pathMapping', $this->pathMapping); + session::global_set('department_info', $config->department_info); } @@ -129,7 +122,7 @@ class baseSelector { if (isset($_POST['bs_input_'.$this->pid])) { // Take over input field base - if ($this->submitButton && isset($_POST['submit_base_'.$this->pid.'_x']) || !$this->submitButton) { + if ($this->submitButton && isset($_POST['submit_base_'.$this->pid]) || !$this->submitButton) { // Check if base is available $this->lastState= false; @@ -193,21 +186,25 @@ class baseSelector { } $selected= $this->base == $base?" class='treeListSelected'":""; $link= "onclick=\"\$('bs_rebase_".$this->pid."').value='".base64_encode($base)."';$('submit_tree_base_".$this->pid."').click();\""; - $this->tree.= "
  • ".str_replace('-', '‑', str_replace(' ', ' ', ldap::fix(preg_replace('/^[a-z0-9]+=([^,]+),.*$/i', '$1', $base)))).""; + $this->tree.= "
  • ". + image($config->department_info[$base]['img'])." ". + $this->gennonbreaks($config->department_info[$base]['name']). + ($config->department_info[$base]['description']==''?'':' ['.$this->gennonbreaks($config->department_info[$base]['description']).']'). + ""; $last_indent= $indent; $first= false; } // Close tree - for ($i= 0; $i<$last_indent; $i++) { + for ($i= 1; $i<$last_indent; $i++) { $this->tree.= "
  • \n"; } $this->tree.= "\n"; // Draw submitter if required if ($this->submitButton) { - $this->tree.= " "; + $this->tree.= image('images/lists/submit.png', "submit_base_".$this->pid, _("Submit")); } $this->tree.= ""; $this->tree.= ""; @@ -217,6 +214,13 @@ class baseSelector { return true; } + + function gennonbreaks($string) + { + return str_replace('-', '‑', str_replace(' ', ' ', $string)); + } + + function render() { return $this->tree;