summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6dd6c75)
raw | patch | inline | side by side (parent: 6dd6c75)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 26 Jun 2009 14:05:35 +0000 (14:05 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 26 Jun 2009 14:05:35 +0000 (14:05 +0000) |
-Single entries will now be edited/removed or copyied directly without showing a selection dialog.
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13807 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13807 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/fai/admin/fai/class_faiManagement.inc | patch | blob | history |
diff --git a/gosa-plugins/fai/admin/fai/class_faiManagement.inc b/gosa-plugins/fai/admin/fai/class_faiManagement.inc
index dc7bac243abd6934baefd076afe959f6b55c2624..29cd8246e8272d8372bbd0ad118e99b7d52c606a 100644 (file)
$display = "";
$s_action = "";
+ $i_entryID ="";
+ $s_entryType= "";
$s_entry = "";
$no_save = FALSE; // hide Apply / Save buttons
foreach(array("opsi_netboot","opsi_local") as $type){
if(isset($group[$type])) unset($group[$type]);
}
- if(count($group)){
+ if(count($group) == 1){
+ $s_action = "remove";
+ $i_entryID = $s_entry;
+ $s_entryType = key($group);
+ }elseif(count($group)){
$this->dialog = new faiGroupHandle($group,"remove");
}
}
}elseif($s_action == "group_edit"){
if(isset($this->objects[$s_entry])){
$group = $this->objects[$s_entry];
- $this->dialog = new faiGroupHandle($group,"edit");
+ if(count($group) == 1){
+ $s_action = "edit";
+ $i_entryID = $s_entry;
+ $s_entryType = key($group);
+ }else{
+ $this->dialog = new faiGroupHandle($group,"edit");
+ }
}
}elseif($s_action == "group_cut"){
if(isset($this->objects[$s_entry])){
$group = $this->objects[$s_entry];
- $this->dialog = new faiGroupHandle($group,"cut");
+ if(count($group) == 1){
+ $s_action = "cut";
+ $i_entryID = $s_entry;
+ $s_entryType = key($group);
+ }else{
+ $this->dialog = new faiGroupHandle($group,"cut");
+ }
}
}elseif($s_action == "group_copy"){
if(isset($this->objects[$s_entry])){
$group = $this->objects[$s_entry];
- $this->dialog = new faiGroupHandle($group,"copy");
+ if(count($group) == 1){
+ $s_action = "copy";
+ $i_entryID = $s_entry;
+ $s_entryType = key($group);
+ }else{
+ $this->dialog = new faiGroupHandle($group,"copy");
+ }
}
}
if($this->dialog instanceOf faiGroupHandle){
********************/
/* Display the copy & paste dialog, if it is currently open */
- $ret = $this->copyPasteHandling_from_queue($s_action,$s_entry);
+ $ret = $this->copyPasteHandling_from_queue($s_action,$i_entryID,$s_entryType);
if($ret){
return($ret);
}
Delete confirme dialog
****************/
- if ($s_action=="del_multiple" ||
+ if ($s_action=="del_multiple" || $s_action == "remove" ||
$this->dialog instanceOf faiGroupHandle && $this->dialog->get_mode() == "remove"){
/* Collect objects to delete and check if objects are freezed
$dns = array();
$errors = "";
$this->dns = array();
- if($this->dialog instanceOf faiGroupHandle){
+
+ if($s_action == "remove"){
+ $to_delete =array($entry = $this->objects[$i_entryID][$s_entryType]);
+ }elseif($this->dialog instanceOf faiGroupHandle){
$to_delete = $this->dialog->get_selected();
}else{
$ids = $this->list_get_selected_items();
}
- function copyPasteHandling_from_queue($s_action,$s_entry)
+ function copyPasteHandling_from_queue($s_action,$i_entryID,$s_entryType)
{
/* Check if Copy & Paste is disabled */
if(!is_object($this->CopyPasteHandler)){
$ui = get_userinfo();
- /* Add a single entry to queue */
+ // Copy a single entry
+ if($s_action == "copy"){
+ $entry = $this->objects[$i_entryID][$s_entryType];
+ $this->CopyPasteHandler->cleanup_queue();
+ $a_setup = $this->get_type($entry);
+ $dn = $entry['dn'];
+ if($ui->is_copyable($dn,"fai",$a_setup[1])){
+ $this->CopyPasteHandler->add_to_queue($dn,"copy",$a_setup[0],$a_setup[2],"fai");
+ }
+ }
+
+ // cut a single entry
+ if($s_action == "cut"){
+ $entry = $this->objects[$i_entryID][$s_entryType];
+ $this->CopyPasteHandler->cleanup_queue();
+ $a_setup = $this->get_type($entry);
+ $dn = $entry['dn'];
+ if($ui->is_copyable($dn,"fai",$a_setup[1])){
+ $this->CopyPasteHandler->add_to_queue($dn,"cut",$a_setup[0],$a_setup[2],"fai");
+ }
+ }
+
+ /* Add a entries from the group selection to queue */
if($this->dialog instanceOf faiGroupHandle && !$this->dialog->is_open()){
if(in_array($this->dialog->get_mode(),array("copy"))){