Code

Added pChart classes and GOsa mapping class to enable auto-include
[gosa.git] / gosa-core / include / class_baseSelector.inc
index b11c8364965bee62595c759d33ac643427497c0c..8a30178d724a5b4fa24de9f321e8b4a7528f2105 100644 (file)
 
 class baseSelector {
 
-  private $base;
-  private $pid;
-  private $action;
-  private $height= 500;
-  private $submitButton= true;
-  protected $tree;
-  protected $pathMapping;
-  protected $lastState;
+    private $base;
+    private $pid;
+    private $action;
+    private $height= 500;
+    private $submitButton= true;
+    protected $tree;
+    protected $pathMapping;
+    protected $lastState;
+
+
+    function __construct($bases, $base= "")
+    {
+        // Initialize pid
+        $this->pid= preg_replace("/[^0-9]/", "", microtime(TRUE));
+
+        // Transfer data
+        $this->setBases($bases);
+        $this->setBase($base);
+    }
 
 
-  function __construct($bases, $base= "")
-  {
-    // Initialize pid
-    $this->pid= preg_replace("/[^0-9]/", "", microtime(TRUE));
+    function setSubmitButton($flag)
+    {
+        $this->submitButton= $flag;
+    }
 
-    // Transfer data
-    $this->setBases($bases);
-    $this->setBase($base);
-  }
 
+    function setHeight($value)
+    {
+        $this->height= $value;
+    }
 
-  function setSubmitButton($flag)
-  {
-    $this->submitButton= $flag;
-  }
+
+    function setBase($base)
+    {
+        if (isset($this->pathMapping[$base])) {
+            $this->base= $base;
+            $this->update(true);
+        }
+    }
 
 
-  function setHeight($value)
-  {
-    $this->height= $value;
-  }
+    function checkBase($base)
+    {
+        return isset($this->pathMapping[$base]);
+    }
 
 
-  function setBase($base)
-  {
-    $base = LDAP::fix($base);
-    if (isset($this->pathMapping[$base])) {
-      $this->base= $base;
-      $this->update(true);
+    function checkLastBaseUpdate()
+    {
+        return $this->lastState;
     }
-  }
 
 
-  function checkBase($base)
-  {
-    return isset($this->pathMapping[$base]);
-  }
+    function setBases($bases)
+    {
+        global $config;
 
+        $this->pathMapping= array();
+        $selected= $this->base == $config->current['BASE']?"Selected":"";
+        $first= true;
+        $last_indent= 2;
 
-  function checkLastBaseUpdate()
-  {
-    return $this->lastState;
-  }
+        foreach ($bases as $base => $dummy) {
 
+            // Build path style display
+            $elements= explode(',', substr($base, 0, strlen($base) - strlen($config->current['BASE'])));
+            $elements= array_reverse($elements, true);
 
-  function setBases($bases)
-  {
-    global $config;
+            $this->pathMapping[$base]= $base == $config->current['BASE']? '/' : ldap::fix(preg_replace('/(^|,)[a-z0-9]+=/i', '/', implode(',', $elements)));
+            $this->pathMapping[$base]= stripslashes(  $this->pathMapping[$base]);
+        }
 
-    $this->pathMapping= array();
-    $selected= $this->base == $config->current['BASE']?"Selected":"";
-    $first= true;
-    $last_indent= 2;
+        // Save bases to session for autocompletion
+        session::global_set('pathMapping', $this->pathMapping);
+        session::global_set('department_info', $config->department_info);
+    }
 
-    foreach ($bases as $base => $dummy) {
 
-      // Build path style display
-      $elements= explode(',', substr($base, 0, strlen($base) - strlen($config->current['BASE'])));
-      $elements= array_reverse($elements, true);
+    function update($force= false)
+    {
+        global $config;
+
+        // Analyze for base changes if needed
+        $this->action= null;
+        $last_base= $this->base;
+        if(isset($_REQUEST['BPID']) && $_REQUEST['BPID'] == $this->pid) {
+            if (isset($_POST['bs_rebase_'.$this->pid]) && !empty($_POST['bs_rebase_'.$this->pid])) {
+                $new_base= base64_decode(get_post('bs_rebase_'.$this->pid));
+
+                if (isset($this->pathMapping[$new_base])) {
+                    $this->base= $new_base;
+                    $this->action= 'rebase';
+                } else {
+                    $this->lastState= false;
+                    return false;
+                }
+            }else{
+
+                // Input field set?
+                if (isset($_POST['bs_input_'.$this->pid])) {
+
+                    // Take over input field base
+                    if ($this->submitButton && isset($_POST['submit_base_'.$this->pid]) || !$this->submitButton) {
+
+                        // Check if base is available
+                        $this->lastState= false;
+                        foreach ($this->pathMapping as $key => $path) {
+                            if (mb_strtolower($path) == mb_strtolower(get_post('bs_input_'.$this->pid))) {
+                                $this->base= $key;
+                                $this->lastState= true;
+                                break;
+                            }
+                        }
+                    }
+                }
+            } 
 
-      $this->pathMapping[LDAP::fix($base)]= $base == $config->current['BASE']? '/' : ldap::fix(preg_replace('/(^|,)[a-z0-9]+=/i', '/', implode(',', $elements)));
-    }
+        }
 
-    // Save bases to session for autocompletion
-    session::global_set('pathMapping', $this->pathMapping);
-    session::global_set('department_info', $config->department_info);
-  }
-
-
-  function update($force= false)
-  {
-    global $config;
-
-    // Analyze for base changes if needed
-    $this->action= null;
-    $last_base= $this->base;
-    if(isset($_REQUEST['BPID']) && $_REQUEST['BPID'] == $this->pid) {
-      if (isset($_POST['bs_rebase_'.$this->pid]) && !empty($_POST['bs_rebase_'.$this->pid])) {
-        $new_base= base64_decode($_POST['bs_rebase_'.$this->pid]);
-        if (isset($this->pathMapping[$new_base])) {
-          $this->base= $new_base;
-          $this->action= 'rebase';
-        } else {
-          $this->lastState= false;
-          return false;
+        /* Skip if there's no change */
+        if (($this->tree && $this->base == $last_base) && !$force) {
+            return true;
         }
-      }else{
-        // Input field set?
-        if (isset($_POST['bs_input_'.$this->pid])) {
-
-          // Take over input field base
-          if ($this->submitButton && isset($_POST['submit_base_'.$this->pid]) || !$this->submitButton) {
-
-            // Check if base is available
-            $this->lastState= false;
-            foreach ($this->pathMapping as $key => $path) {
-              if (mb_strtolower($path) == mb_strtolower($_POST['bs_input_'.$this->pid])) {
-                $this->base= $key;
-                $this->lastState= true;
-                break;
-              }
+
+        $link= "onclick=\"\$('bs_rebase_".$this->pid."').value='".base64_encode($config->current['BASE'])."';  $('submit_tree_base_".$this->pid."').click();\"";
+
+
+        $this->tree= "<input style='width:160px' type='text' size='35'
+            name='bs_input_{$this->pid}' id='bs_input_{$this->pid}'
+
+            onkeydown=\"    \$('bs_{$this->pid}').hide(); \"
+            onfocus=\"      \$('bs_{$this->pid}').hide(); \"
+            onmouseover=\"  mouseIsStillOver = true;
+        function showIt()
+        {
+            if(mouseIsStillOver){
+                \$('bs_".$this->pid."').show();
             }
-          }
-        }
-      } 
+        };
+        Element.clonePosition(\$('bs_".$this->pid."'),
+                'bs_input_".$this->pid."',
+                {setHeight: false, setWidth: false, offsetTop:(Element.getHeight('bs_input_".$this->pid."'))});
+        rtimer=showIt.delay(0.25); \"
 
-    }
+            onmouseout=\"   mouseIsStillOver=false;
+        rtimer=Element.hide.delay(0.25,'bs_".$this->pid."')\"
 
-    /* Skip if there's no change */
-    if (($this->tree && $this->base == $last_base) && !$force) {
-      return true;
-    }
+            value=\"".preg_replace('/"/','&quot;',$this->pathMapping[$this->base])."\">";
 
-    $link= "onclick=\"\$('bs_rebase_".$this->pid."').value='".base64_encode($config->current['BASE'])."';  $('submit_tree_base_".$this->pid."').click();\"";
-    $this->tree= "<input type='text' size='35' name='bs_input_".$this->pid."' id='bs_input_".$this->pid."' onkeydown=\"\$('bs_".$this->pid."').hide()\" onfocus=\"\$('bs_".$this->pid."').hide()\" onmouseover=\"Element.clonePosition(\$('bs_".$this->pid."'), 'bs_input_".$this->pid."', {setHeight: false, setWidth: false, offsetTop:(Element.getHeight('bs_input_".$this->pid."'))});\$('bs_".$this->pid."').show();\" onmouseout=\"rtimer= Element.hide.delay(0.25, 'bs_".$this->pid."')\" value=\"".preg_replace('/"/', '&quot;',$this->pathMapping[$this->base])."\">";
 
-    // Autocompleter
-    $this->tree.= "<div id='autocomplete_".$this->pid."' class='autocomplete'></div>".
-                  "<script type='text/javascript'>".
-                  "new Ajax.Autocompleter('bs_input_".$this->pid."', 'autocomplete_".$this->pid."', 'autocomplete.php?type=base', { minChars: 3, frequency: 0.5 });";
-    if ($this->submitButton) {
-      $this->tree.= "$('bs_input_".$this->pid."').observe('keypress', function(event) { if(event.keyCode == Event.KEY_RETURN) { $('submit_base_".$this->pid."').click(); } });";
-    }
-    $this->tree.= "</script>";
-
-    $selected= $this->base == $config->current['BASE']?"Selected":"";
-    $this->tree.= "<div class='treeList' style='display:none;max-height:".$this->height."px' id='bs_".$this->pid."' onmouseover=\"window.clearTimeout(rtimer);\" onmouseout=\"rtimer= Element.hide.delay(0.25, 'bs_".$this->pid."')\"><a class='treeList$selected' $link>/&nbsp;["._("Root")."]</a><ul class='treeList'>\n";
-    $first= true;
-    $last_indent= 2;
-
-    foreach ($this->pathMapping as $base => $dummy) {
-
-      // Skip root for tree
-      if ($base == $config->current['BASE']) {
-        continue;
-      }
-
-      // Build path style display
-      $elements= explode(',', substr($base, 0, strlen($base) - strlen($config->current['BASE'])));
-
-      $indent= count($elements);
-      if (!$first && ($indent == $last_indent)) {
-        $this->tree.= "</li>\n";
-      }
-      if ($indent > $last_indent) {
-        $this->tree.= "<ul>\n";
-      }
-      if ($indent < $last_indent) {
-        for ($i= 0; $i < ($last_indent-$indent); $i++) {
-          $this->tree.= "</li></ul>\n";
+        // Autocompleter
+        $this->tree.= "<div id='autocomplete_".$this->pid."' class='autocomplete'></div>".
+            "<script type='text/javascript'>".
+            "new Ajax.Autocompleter('bs_input_".$this->pid."', 'autocomplete_".$this->pid."', 'autocomplete.php?type=base', { minChars: 3, frequency: 0.5 });";
+        if ($this->submitButton) {
+            $this->tree.= "$('bs_input_".$this->pid."').observe('keypress', function(event) { if(event.keyCode == Event.KEY_RETURN) { $('submit_base_".$this->pid."').click(); } });";
         }
-        $this->tree.= "</li>\n";
-      }
-      $selected= $this->base == $base?" class='treeListSelected'":"";
-      $link= "onclick=\"\$('bs_rebase_".$this->pid."').value='".base64_encode($base)."';$('submit_tree_base_".$this->pid."').click();\"";
-      $this->tree.= "<li>".
-                    image($config->department_info[$base]['img'])."&nbsp;<a$selected $link>".
-                    ($this->gennonbreaks($config->department_info[LDAP::fix($base)]['name'])).
-                    ($config->department_info[LDAP::fix($base)]['description']==''?'':'&nbsp;<span class="informal">['.$this->gennonbreaks($config->department_info[LDAP::fix($base)]['description']).']</span>').
-                    "</a>";
-
-      $last_indent= $indent;
-      $first= false;
-    }
+        $this->tree.= "</script>";
 
-    // Close tree
-    for ($i= 1; $i<$last_indent; $i++) {
-      $this->tree.= "</li></ul>\n";
-    }
-    $this->tree.= "</div>\n";
+        $selected= $this->base == $config->current['BASE']?"Selected":"";
+        $this->tree.= "<div class='treeList' style='display:none;max-height:".$this->height."px' id='bs_".$this->pid."' onmouseover=\"window.clearTimeout(rtimer);\" onmouseout=\"rtimer= Element.hide.delay(0.25, 'bs_".$this->pid."')\"><a class='treeList$selected' $link>/&nbsp;["._("Root")."]</a><ul class='treeList'>\n";
+        $first= true;
+        $last_indent= 2;
 
-    // Draw submitter if required
-    if ($this->submitButton) {
-      $this->tree.= image('images/lists/submit.png', "submit_base_".$this->pid, _("Submit"));
-    }
-    $this->tree.= "<input type='submit' style='display:none' name='submit_tree_base_".$this->pid."' id='submit_tree_base_".$this->pid."'>";
-    $this->tree.= "<input type='hidden' name='bs_rebase_".$this->pid."' id='bs_rebase_".$this->pid."'>";
-    $this->tree.= "<input type='hidden' name='BPID' id='BPID' value='".$this->pid."'>";
+        foreach ($this->pathMapping as $base => $dummy) {
 
-    $this->lastState= true;
-    return true;
-  }
+            // Skip root for tree
+            if ($base == $config->current['BASE']) {
+                continue;
+            }
 
+            // Build path style display
+            $elements= explode(',', substr($base, 0, strlen($base) - strlen($config->current['BASE'])));
 
-  function gennonbreaks($string)
-  {
-    return str_replace('-', '&#8209;', str_replace(' ', '&nbsp;', $string));
-  }
+            $indent= count($elements);
+            if (!$first && ($indent == $last_indent)) {
+                $this->tree.= "</li>\n";
+            }
+            if ($indent > $last_indent) {
+                $this->tree.= "<ul>\n";
+            }
+            if ($indent < $last_indent) {
+                for ($i= 0; $i < ($last_indent-$indent); $i++) {
+                    $this->tree.= "</li></ul>\n";
+                }
+                $this->tree.= "</li>\n";
+            }
+            $selected= $this->base == $base?" class='treeListSelected'":"";
+            $link= "onclick=\"\$('bs_rebase_".$this->pid."').value='".base64_encode($base)."';$('submit_tree_base_".$this->pid."').click();\"";
+            $this->tree.= "<li>".
+                image($config->department_info[$base]['img'])."&nbsp;<a$selected $link>".
+                $this->gennonbreaks($config->department_info[$base]['name']).
+                ($config->department_info[$base]['description']==''?'':'&nbsp;<span class="informal">['.$this->gennonbreaks($config->department_info[$base]['description']).']</span>').
+                "</a>";
+
+            $last_indent= $indent;
+            $first= false;
+        }
 
+        // Close tree
+        for ($i= 1; $i<$last_indent; $i++) {
+            $this->tree.= "</li></ul>\n";
+        }
+        $this->tree.= "</div>\n";
 
-  function render()
-  {
-    return $this->tree;
-  }
+        // Draw submitter if required
+        if ($this->submitButton) {
+            $this->tree.= image('images/lists/submit.png', "submit_base_".$this->pid, _("Submit"));
+        }
+        $this->tree.= "<input type='submit' style='display:none' name='submit_tree_base_".$this->pid."' id='submit_tree_base_".$this->pid."'>";
+        $this->tree.= "<input type='hidden' name='bs_rebase_".$this->pid."' id='bs_rebase_".$this->pid."'>";
+        $this->tree.= "<input type='hidden' name='BPID' id='BPID' value='".$this->pid."'>";
 
+        $this->lastState= true;
+        return true;
+    }
 
-  function getBase()
-  {
-    return $this->base;
-  }
+
+    function gennonbreaks($string)
+    {
+        return str_replace('-', '&#8209;', str_replace(' ', '&nbsp;', $string));
+    }
 
 
-  function getAction()
-  {
-    // Do not do anything if this is not our BPID, or there's even no BPID available...
-    if(!isset($_REQUEST['BPID']) || $_REQUEST['BPID'] != $this->pid) {
-      return;
+    function render()
+    {
+        return $this->tree;
     }
 
-    if ($this->action) {
-      return array("targets" => array($this->base), "action" => $this->action);
+
+    function getBase()
+    {
+        return $this->base;
     }
 
-    return null;
-  }
+
+    function getAction()
+    {
+        // Do not do anything if this is not our BPID, or there's even no BPID available...
+        if(!isset($_REQUEST['BPID']) || $_REQUEST['BPID'] != $this->pid) {
+            return;
+        }
+
+        if ($this->action) {
+            return array("targets" => array($this->base), "action" => $this->action);
+        }
+
+        return null;
+    }
 
 }