summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1bdcbfb)
raw | patch | inline | side by side (parent: 1bdcbfb)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 26 Oct 2010 07:03:59 +0000 (07:03 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 26 Oct 2010 07:03:59 +0000 (07:03 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20144 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_ItemSelector.inc | patch | blob | history | |
gosa-core/include/class_baseSelector.inc | patch | blob | history |
index f8e5fad9a44c11be2f2e25557f580bbc8633f27c..55b808691704c07235a9537095596efcd666be91 100644 (file)
public $releaseInfo;
public $releaseBase;
- function __construct($bases, $base, $releaseBase)
+ function __construct($bases = array(), $base = "", $releaseBase = "")
{
// Initialize pid
$this->pid= preg_replace("/[^0-9]/", "", microtime(TRUE));
}
// Save bases to session for autocompletion
- session::global_set('pathMapping', $this->pathMapping);
- session::global_set('department_info', $this->releaseInfo);
+ session::global_set("pathMapping_{$this->pid}", $this->pathMapping);
+ session::global_set("department_info_{$this->pid}", $this->releaseInfo);
}
$this->action= null;
$last_base= $this->base;
if(isset($_REQUEST["BPID_{$this->pid}"]) && $_REQUEST["BPID_{$this->pid}"] == $this->pid) {
- if (isset($_POST['bs_rebase_'.$this->pid]) && !empty($_POST['bs_rebase_'.$this->pid])) {
+ if (isset($_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';
$initialValue = $this->pathMapping[$this->base];
}
- $this->tree= "<input style='width:160px' type='text' size='35'
- name='bs_input_{$this->pid}' id='bs_input_{$this->pid}'
+ $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."')\"
+ 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."')\"
value=\"".preg_replace('/"/','"',$initialValue)."\">";
$this->tree.= "<div id='autocomplete_".$this->pid."' class='autocomplete'></div>".
"<script type='text/javascript'>".
"var mouseIsStillOver = false;".
- "new Ajax.Autocompleter('bs_input_".$this->pid."', 'autocomplete_".$this->pid."', 'autocomplete.php?type=base', { minChars: 3, frequency: 0.5 });";
+ "new Ajax.Autocompleter(
+ 'bs_input_".$this->pid."',
+ 'autocomplete_".$this->pid."',
+ 'autocomplete.php?type=base&pid={$this->pid}',
+ { 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.= "$('bs_input_".$this->pid."').observe('keypress',
+ function(event)
+ {
+ if(event.keyCode == Event.KEY_RETURN) {
+ $('submit_base_".$this->pid."').click();
+ }
+ });";
}
$this->tree.= "</script>";
+ $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."')\">
+ <ul class='treeList'>\n";
- $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."')\">
-
- <ul class='treeList'>\n";
$first= true;
$last_indent= 1;
foreach ($this->pathMapping as $base => $dummy) {
- // Skip root for tree
- if ($base == $this->releaseBase) {
-# continue;
- }
-
// Build path style display
$elements= explode('/', substr($base, strlen($this->releaseBase), strlen($base)));
$indent= count($elements) ;
-
+
if (!$first && ($indent == $last_indent)) {
$this->tree.= "</li>\n";
}
index ab107dc7865d9297627bcc9c782f5ec9a46924a2..93e0d8292aad1608e92872a6ff104b9ab9755c35 100644 (file)
}
// Save bases to session for autocompletion
- session::global_set('pathMapping', $this->pathMapping);
- session::global_set('department_info', $config->department_info);
+ session::global_set("pathMapping_{$this->pid}", $this->pathMapping);
+ session::global_set("department_info_{$this->pid}", $config->department_info);
}
// 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 });";
+ "new Ajax.Autocompleter('bs_input_".$this->pid."', 'autocomplete_".$this->pid."',
+ 'autocomplete.php?type=base&pid={$this->pid}',
+ { 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(); } });";
}