summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6025b9e)
raw | patch | inline | side by side (parent: 6025b9e)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 27 Jun 2006 04:59:26 +0000 (04:59 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 27 Jun 2006 04:59:26 +0000 (04:59 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3917 594d385d-05f5-0310-b6e9-bd551577e9d8
12 files changed:
index 037c2da98d1c629fd33957baa64edc60197ef767..f61bd38b16e2a6e352f51311d93c8f6ba43681f5 100644 (file)
Binary files a/html/images/restore.png and b/html/images/restore.png differ
Binary files a/html/images/restore.png and b/html/images/restore.png differ
index 82aac59eee198e016f7bdae4c8acf11ecfb2b04b..d50f410078326a1cf24ae246da14e87e1867c499 100644 (file)
$str = "";
if($this->parent->snapshotEnabled()){
- $str .="<input class='center' type='image' src='images/snapshot.png'
+ $str= "<input class='center' type='image' src='images/snapshot.png'
alt='"._("Create snapshot")."' name='CreateSnapShotDialog_".base64_encode($dn)."' title='"._("Create a new snapshot from this object")."'> ";
if(count($this->parent->Available_SnapsShots($dn))){
- $str .="<input class='center' type='image' src='images/restore.png'
+ $str= "<input class='center' type='image' src='images/restore.png'
alt='"._("Restore snapshot")."' name='RestoreSnapShotDialog_".base64_encode($dn)."' title='"._("Restore snapshot")."'> ";
- }else{
- $str.= "<img src='images/empty.png' style='width:16px;' class='center'> ";
}
}
+
return($str);
}
diff --git a/plugins/admin/applications/class_divListApplication.inc b/plugins/admin/applications/class_divListApplication.inc
index 86f1aa235fa5f1f2ff04bd043298ecc19b9fe30b..8487f9b4dc55b6b27d1b36583a817f5e2e8efd2b 100755 (executable)
foreach($list as $key => $val){
/* Create action icons */
- $actions = $this->GetSnapShotActions($val['dn']);
+ $actions= "";
if($this->parent->CopyPasteHandler){
$actions.= "<input class='center' type='image'
src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'> ";
}
$actions.= "<input class='center' type='image'
src='images/edit.png' alt='"._("edit")."' name='appl_edit_%KEY%' title='"._("Edit this entry")."'>";
+ $actions.= $this->GetSnapShotActions($val['dn']);
$actions.= "<input class='center' type='image'
src='images/edittrash.png' alt='"._("delete")."' name='appl_del_%KEY%' title='"._("Delete this entry")."'>";
diff --git a/plugins/admin/departments/class_divListDepartment.inc b/plugins/admin/departments/class_divListDepartment.inc
index f031451082f1f0092623cc05f0170a4f2b389782..e2b1509e63cc78e0eef04032205a99f3d2e7062b 100755 (executable)
$disp = get_sub_department($cdn);
}
- $actions = $this->GetSnapShotActions($val['dn']);
- $actions.= "<input class='center' type='image' src='images/edit.png'
+ $actions= "<input class='center' type='image' src='images/edit.png'
alt='"._("edit")."' name='dep_edit_%KEY%' title='"._("Edit this entry")."'>";
+ $actions.= $this->GetSnapShotActions($val['dn']);
$actions.= "<input class='center' type='image' src='images/edittrash.png'
alt='"._("delete")."' name='dep_del_%KEY%' title='"._("Delete this entry")."'>";
index b308def3cf1f9ca5b62d6abfb7dc37817b687bf7..fcbb7246872740921a01dd2b8c973421e6ed82d5 100644 (file)
$desc= "";
}
- $action = $this->GetSnapShotActions($value['dn']);;
if($value['FAIstate'] == "freeze"){
- $action .= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."'
+ $action= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."'
name='entry_edit_%KEY%' title='"._("Edit class")."'>";
$edi = $editlink;
$acti = $action;
}else{
- $action .= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."'
+ $action= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."'
name='entry_edit_%KEY%' title='"._("Edit class")."'>";
- $action .= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'
+ $action.= $this->GetSnapShotActions($value['dn']);;
+ $action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'
name='entry_delete_%KEY%' title='"._("Delete class")."'>";
$acti = $action;
$edi = $editlink;
diff --git a/plugins/admin/groups/class_divListGroup.inc b/plugins/admin/groups/class_divListGroup.inc
index 0e8ac98f19b9e106f8c95f69b3ef3108eb2b18ee..06c9b5b4750696e56dea2ebe2ccd50b5e4450e88 100644 (file)
foreach($groups as $key => $val){
/* Create action icons - copy & paste icons */
- $actions = $this->GetSnapShotActions($val['dn']);
+ $actions= "";
if($this->parent->CopyPasteHandler){
$actions.= "<input class='center' type='image'
src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'> ";
}
$actions.= "<input class='center' type='image'
src='images/edit.png' alt='"._("edit")."' name='group_edit_%KEY%' title='"._("Edit this entry")."'>";
+ $actions.= $this->GetSnapShotActions($val['dn']);
$actions.= "<input class='center' type='image'
src='images/edittrash.png' alt='"._("delete")."' name='group_del_%KEY%' title='"._("Delete this entry")."'>";
diff --git a/plugins/admin/ogroups/class_divListOGroup.inc b/plugins/admin/ogroups/class_divListOGroup.inc
index 073286cbf871516a5c7806991dd6ec629ecf4940..607a6976ca2474d574a3d9f3a60e7e6d4d7d39e1 100755 (executable)
foreach($list as $key => $val){
/* Create action icons */
- $actions = $this->GetSnapShotActions($val['dn']);
+ $actions= "";
if($this->parent->CopyPasteHandler){
$actions.= "<input class='center' type='image'
src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'> ";
}
$actions.= "<input class='center' type='image'
src='images/edit.png' alt='"._("edit")."' name='group_edit_%KEY%' title='"._("Edit this entry")."'>";
+ $actions.= $this->GetSnapShotActions($val['dn']);
$actions.= "<input class='center' type='image'
src='images/edittrash.png' alt='"._("delete")."' name='group_del_%KEY%' title='"._("Delete this entry")."'>";
diff --git a/plugins/admin/systems/class_divListSystem.inc b/plugins/admin/systems/class_divListSystem.inc
index 1f804349ae451a350895928a2df0891b6d96ab42..fe125e2aa7090e760c6afafae5d23041836084b5 100644 (file)
// Test Every Entry and generate divlist Array
foreach($terminals as $key => $val){
- $action = $this->GetSnapShotActions($val['dn']);
- $action.= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."' name='user_edit_%KEY%' title='"._("Edit system")."'>";
+ $action= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."' name='user_edit_%KEY%' title='"._("Edit system")."'>";
+ $action.= $this->GetSnapShotActions($val['dn']);
$action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."' name='user_del_%KEY%' title='"._("Delete system")."'>";
/* Generate picture list, which is currently disabled */
diff --git a/plugins/admin/users/class_divListUsers.inc b/plugins/admin/users/class_divListUsers.inc
index af5b0af65076b10bcca3b8b160ed2345e8fe4bd5..ed885c2d0cc8443d0f384cad8f3913f1a3f2fda0 100644 (file)
foreach($list as $key => $val){
/* Create action icons */
- $action = $this->GetSnapShotActions($val['dn']);
+ $action= "";
if($this->parent->CopyPasteHandler){
$action .= "<input class='center' type='image'
src='images/editcut.png' alt='"._("cut")."' name='cut_%KEY%' title='"._("Cut this entry")."'> ";
name='user_edit_%KEY%' title='"._("Edit user")."'>";
$action.= "<input class='center' type='image' src='images/list_password.png' alt='"._("password")."'
name='user_chgpw_%KEY%' title='"._("Change password")."'>";
+ $action.= $this->GetSnapShotActions($val['dn']);
$action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'
name='user_del_%KEY%' title='"._("Delete user")."'>";
diff --git a/plugins/gofax/blocklists/class_divListBlocklists.inc b/plugins/gofax/blocklists/class_divListBlocklists.inc
index e99ca587b654ade590a373a00131ecbc3265c533..171393df625718fc0be3aafab9e06e5a8ce7f089 100755 (executable)
/* Append to list */
foreach($list as $key => $val){
- $action = $this->GetSnapShotActions($val['dn']);
- $action.= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."' name='user_edit_%KEY%' title='"._("Edit user")."'>";
+ $action= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."' name='user_edit_%KEY%' title='"._("Edit user")."'>";
+ $action.= $this->GetSnapShotActions($val['dn']);
$action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."' name='user_del_%KEY%' title='"._("Delete user")."'>";
// Generate Array to Add
diff --git a/plugins/gofon/conference/class_divListConferences.inc b/plugins/gofon/conference/class_divListConferences.inc
index 7276357fb3bf8d7339be289e844c93aa1ab19f7e..073486bb02d4e437fdbb0f2440906407a2aae283 100755 (executable)
/* Insert conferneces*/
foreach($list as $conferencekey => $conference ){
- $action = $this->GetSnapShotActions($conference['dn']);
$actions= "<input class='center' type='image' src='images/edit.png'
alt='"._("edit")."' name='conf_edit_%KEY%' title='"._("Edit this entry")."'>";
+ $actions.= $this->GetSnapShotActions($conference['dn']);
$actions.= "<input class='center' type='image' src='images/edittrash.png'
alt='"._("delete")."' name='conf_del_%KEY%' title='"._("Delete this entry")."'>";
$actions2= "<input class='center' type='image' src='images/edittrash.png'
diff --git a/plugins/gofon/macro/class_divListMacros.inc b/plugins/gofon/macro/class_divListMacros.inc
index 73e3c0a5071a799d4e377716efd1df986e9164a9..dc17d6b6050b60413acfdec3f1cbf42408352474 100755 (executable)
foreach($list as $key => $val){
- $action = $this->GetSnapShotActions($val['dn']);
- $action .= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."'
+ $action= "<input class='center' type='image' src='images/edit.png' alt='"._("edit")."'
name='user_edit_%KEY%' title='"._("Edit macro")."'>";
- $action .= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'
+ $action.= $this->GetSnapShotActions($val['dn']);
+ $action.= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."'
name='user_del_%KEY%' title='"._("Delete macro")."'>";
$display= $val["displayName"][0];