summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: dc5e91d)
raw | patch | inline | side by side (parent: dc5e91d)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 18 Apr 2008 13:20:05 +0000 (13:20 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 18 Apr 2008 13:20:05 +0000 (13:20 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10560 594d385d-05f5-0310-b6e9-bd551577e9d8
12 files changed:
diff --git a/gosa-core/html/images/list_new_group.png b/gosa-core/html/images/list_new_group.png
deleted file mode 100644 (file)
index 95f99c0..0000000
Binary files a/gosa-core/html/images/list_new_group.png and /dev/null differ
index 95f99c0..0000000
Binary files a/gosa-core/html/images/list_new_group.png and /dev/null differ
diff --git a/gosa-core/html/images/select_groups.png b/gosa-core/html/images/select_groups.png
deleted file mode 100644 (file)
index 8f69e2b..0000000
Binary files a/gosa-core/html/images/select_groups.png and /dev/null differ
index 8f69e2b..0000000
Binary files a/gosa-core/html/images/select_groups.png and /dev/null differ
diff --git a/gosa-core/html/plugins/groups/images/groups.png b/gosa-core/html/plugins/groups/images/groups.png
new file mode 100644 (file)
index 0000000..8f69e2b
Binary files /dev/null and b/gosa-core/html/plugins/groups/images/groups.png differ
index 0000000..8f69e2b
Binary files /dev/null and b/gosa-core/html/plugins/groups/images/groups.png differ
diff --git a/gosa-core/html/plugins/groups/images/new.png b/gosa-core/html/plugins/groups/images/new.png
new file mode 100644 (file)
index 0000000..95f99c0
Binary files /dev/null and b/gosa-core/html/plugins/groups/images/new.png differ
index 0000000..95f99c0
Binary files /dev/null and b/gosa-core/html/plugins/groups/images/new.png differ
diff --git a/gosa-core/plugins/admin/groups/class_divListGroup.inc b/gosa-core/plugins/admin/groups/class_divListGroup.inc
index 543509df3138dd0ddd9fa5552852fb0292a0456c..4459ee926dbc890682aed4023c5c424b68c92fd6 100644 (file)
/* Append create options */
if(preg_match("/c/",$acl_all)) {
- $s.= "...|<input class='center' type='image' src='images/list_new_group.png' alt=''>".
+ $s.= "...|<input class='center' type='image' src='plugins/groups/images/new.png' alt=''>".
" "._("Group")."|group_new|\n";
}
// image Buttons
$editlink = "<a href='?plug=".$_GET['plug']."&id=%s&act=edit_entry'>%s</a>";
- $userimg = "<img class='center' src='images/select_groups.png' alt='User' title='%s'>";
+ $userimg = "<img class='center' src='plugins/groups/images/groups.png' alt='User' title='%s'>";
/* Dynamic action col, depending on snapshot icons */
$action_col_size = 80;
}
/* Assign extension images */
- $posiximg = "<input type='image' class='center' src='images/select_groups.png'
+ $posiximg = "<input type='image' class='center' src='plugins/groups/images/groups.png'
name='group_group_edit_%KEY%' alt='P' title='"._("Posix") ."'>";
$mailimg = "<input type='image' class='center' src='images/mailto.png'
name='mailgroup_group_edit_%KEY%' alt='M' title='"._("Mail") ."'>";
$num_grp_str = _("Number of listed groups");
$num_dep_str = _("Number of listed departments");
- $str = "<img class='center' src='images/select_groups.png'
+ $str = "<img class='center' src='plugins/groups/images/groups.png'
title='".$num_grp_str."' alt='".$num_grp_str."'> ".$num_grps." ";
$str.= "<img class='center' src='images/lists/folder.png'
title='".$num_dep_str."' alt='".$num_dep_str."'> ".$num_deps." ";
diff --git a/gosa-core/plugins/admin/ogroups/class_divListOGroup.inc b/gosa-core/plugins/admin/ogroups/class_divListOGroup.inc
index dfd5acb4698cae392b8ab689c63cfc9ca9a58711..dff6536462f78a8698a2911e5be1d091e3b9580d 100644 (file)
// Defining Links
$linkopen = "<a href='?plug=".$_GET['plug']."&act=dep_open&dep_id=%s'>%s</a>";
$editlink = "<a href='?plug=".$_GET['plug']."&id=%s&act=edit_entry'>%s</a>";
- $userimg = "<img class='center' src='images/select_groups.png' alt='User' title='%s'>";
+ $userimg = "<img class='center' src='plugins/groups/images/groups.png' alt='User' title='%s'>";
$mailimg = "<img class='center' src='images/mailto.png' alt='M' title='"._("Mail") ."'>";
$empty = "<img class='center' src='images/empty.png' style='width:16px;height:16px;' alt=''>";
diff --git a/gosa-plugins/goto/addons/goto/events/class_EventTargetAddUsersList.inc b/gosa-plugins/goto/addons/goto/events/class_EventTargetAddUsersList.inc
index 73c962278c7b0d9c050ee59896294f283948cf6a..951976a757dcc06715d0a5dcd17a529b19e5e8cb 100644 (file)
if(in_array("gosaAccount",$obj['objectClass'])){
$img = '<img class="center" src="images/select_user.png" alt="U" title="'._("User").'">';
}elseif(in_array("posixGroup",$obj['objectClass'])){
- $img = '<img class="center" src="images/select_groups.png" alt="G" title="'._("Group").'">';
+ $img = '<img class="center" src="plugins/groups/images/groups.png" alt="G" title="'._("Group").'">';
}
$field1 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>",
diff --git a/gosa-plugins/goto/admin/applications/class_divListApplication.inc b/gosa-plugins/goto/admin/applications/class_divListApplication.inc
index 99771d2778dccdb5809ca3d7219ffdd01539a28b..a12d02c7afa617956203be415aa940777364ed01 100644 (file)
/* Create links */
$linkopen = "<a href='?plug=".$_GET['plug']."&act=dep_open&dep_id=%s'>%s</a>";
$editlink = "<a href='?plug=".$_GET['plug']."&id=%s&act=edit_entry'>%s</a>";
- $userimg = "<img class='center' src='images/select_groups.png' alt='User' title='%s'>";
+ $userimg = "<img class='center' src='plugins/groups/images/groups.png' alt='User' title='%s'>";
$applimg = "<img class='center' src='images/select_application.png' alt='A' title='"._("Application")."'>";
$empty = "<img class='center' src='images/empty.png' style='width:16px;height:16px;' alt=''>";
diff --git a/gosa-plugins/goto/admin/devices/class_divListDevices.inc b/gosa-plugins/goto/admin/devices/class_divListDevices.inc
index f0db08e8dfc8a805d316dd14c91353ed1c2c9903..f55d61cf895a4bdcedbb4119858b4663c56bf0f0 100644 (file)
/* Create links */
$linkopen = "<a href='?plug=".$_GET['plug']."&act=dep_open&dep_id=%s'>%s</a>";
$editlink = "<a href='?plug=".$_GET['plug']."&id=%s&act=edit_entry'>%s</a>";
- $userimg = "<img class='center' src='images/select_groups.png' alt='User' title='%s'>";
+ $userimg = "<img class='center' src='plugins/groups/images/groups.png' alt='User' title='%s'>";
$deviceimg = "<img class='center' src='images/select_device.png' alt='A' title='"._("Device")."'>";
$empty = "<img class='center' src='images/empty.png' style='width:16px;height:16px;' alt=''>";
diff --git a/gosa-plugins/goto/admin/mimetypes/class_divListMimeTypes.inc b/gosa-plugins/goto/admin/mimetypes/class_divListMimeTypes.inc
index 820ae1e2bb8573401fb21262c7f2b008e812576a..79c2ff8452b0c2ca2ceaab6367166ab78c177a0b 100644 (file)
/* Create links */
$linkopen = "<a href='?plug=".$_GET['plug']."&act=dep_open&dep_id=%s'>%s</a>";
$editlink = "<a href='?plug=".$_GET['plug']."&id=%s&act=edit_entry'>%s</a>";
- $userimg = "<img class='center' src='images/select_groups.png' alt='User' title='%s'>";
+ $userimg = "<img class='center' src='plugins/groups/images/groups.png' alt='User' title='%s'>";
$mimeimg = "<img class='center' src='images/select_mimetype.png' alt='A' title='"._("Mime type")."'>";
$empty = "<img class='center' src='images/empty.png' style='width:16px;height:16px;' alt=''>";
diff --git a/gosa-plugins/sudo/admin/sudo/class_sudoGeneric.inc b/gosa-plugins/sudo/admin/sudo/class_sudoGeneric.inc
index a4ca4c12683cc5cddf72e4212076f0523f80f770..eb9fcf0176b7ddc65db528cd67a35d9fff5e9064 100644 (file)
foreach(array("sudoUser") as $attr){
$img1 = "<img src='images/select_user.png' alt='"._("User")."' class='center'>";
- $img2 = "<img src='images/select_groups.png' alt='"._("Group")."' class='center'>";
+ $img2 = "<img src='plugins/groups/images/groups.png' alt='"._("Group")."' class='center'>";
if($this->acl_is_readable($attr)){
foreach($this->$attr as $key => $entry){
$neg = "";
diff --git a/gosa-plugins/sudo/admin/sudo/class_target_list_users.inc b/gosa-plugins/sudo/admin/sudo/class_target_list_users.inc
index 3edfd68528d37948c2df4dbb509bf214b9010f9d..cc36e9d833e0d240a43bd27aa26e0469db5b118c 100644 (file)
}
$img1 = "<img src='images/select_user.png' alt='"._("User")."' ".$title.">";
- $img2 = "<img src='images/select_groups.png' alt='"._("Group")."' ".$title.">";
+ $img2 = "<img src='plugins/groups/images/groups.png' alt='"._("Group")."' ".$title.">";
if(in_array("posixGroup",$val['objectClass'])){
$img = $img2;