summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e2cd7cb)
raw | patch | inline | side by side (parent: e2cd7cb)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 29 Oct 2009 07:16:35 +0000 (07:16 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 29 Oct 2009 07:16:35 +0000 (07:16 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14696 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/admin/departments/class_divListDepartment.inc | [deleted file] | patch | blob | history |
diff --git a/gosa-core/plugins/admin/departments/class_divListDepartment.inc b/gosa-core/plugins/admin/departments/class_divListDepartment.inc
+++ /dev/null
@@ -1,219 +0,0 @@
-<?php
-/*
- * This code is part of GOsa (http://www.gosa-project.org)
- * Copyright (C) 2003-2008 GONICUS GmbH
- *
- * ID: $$Id$$
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-class divListDepartment extends MultiSelectWindow
-{
-
- /* Current base */
- var $selectedBase = "";
- var $departments = array();
-
- /* Regex */
- var $Regex = "*";
-
- /* Subsearch checkbox */
- var $SubSearch = false;
-
- var $parent ;
- var $ui ;
-
- function divListDepartment (&$config, &$parent)
- {
- MultiSelectWindow::MultiSelectWindow($config, "Department", "department");
-
- $this->parent = &$parent;
- $this->ui = get_userinfo();
-
- /* Set list strings */
- $this->SetTitle(_("List of departments"));
- $this->SetSummary(_("List of departments"));
- $this->EnableAplhabet (true);
-
- /* Result page will look like a headpage */
- $this->SetHeadpageMode();
-
- /* Disable buttonsm */
- $this->EnableCloseButton(false);
- $this->EnableSaveButton (false);
-
- /* Toggle all selected / deselected */
- $chk = "<input type='checkbox' id='select_all' name='select_all' title='"._("Select all")."'
- onClick='toggle_all_(\"^item_selected_[a-zA-Z0-9\\/\=]*$\",\"select_all\");' >";
-
- /* set Page header */
- $this->AddHeader(array("string"=> $chk, "attach"=>"style='width:20px;'"));
- $this->AddHeader(array("string" => " ", "attach" => "style='text-align:center;width:20px;'"));
- $this->AddHeader(array("string"=>_("Department name"), "attach" => "style=''"));
- $this->AddHeader(array("string" =>_("Actions"), "attach" => "style='width:60px;border-right:0px;text-align:right;'"));
-
-
- /* Add SubSearch checkbox */
- $this->AddCheckBox("SubSearch", msgPool::selectToView("","subsearch"), msgPool::selectToView("","subsearch_small"), false);
-
- /* Name ,Text ,Default , Connect with alphabet */
- $this->AddRegex ("Regex", _("Regular expression for matching department names"), "*" , true);
- }
-
-
- function GenHeader()
- {
- /* Get all departments within this subtree */
- $ui= get_userinfo();
- $base = $this->config->current['BASE'];
- $options = $this->create_department_list($this->module);
- $listhead = MultiSelectWindow::get_default_header();
- $listhead .=
- " "._("Base")." <select name='CurrentMainBase' onChange='mainform.submit()' class='center'>$options</select>".
- " <input class='center' type='image' src='images/lists/submit.png' align='middle' ".
- " title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'> ";
-
- /* Create Layers menu */
- $s = ".|"._("Actions")."|\n";
-
- /* Append create options */
- $s .= "..|<img src='images/lists/new.png' alt='' border='0' class='center'>".
- " "._("Create")."|\n";
-
- /* Add all createable department types
- */
- $types = $this->parent->get_support_departments();
- foreach($types as $type){
- if(preg_match("/c/",$ui->get_permissions($this->selectedBase ,"department/".$type['ACL']))){
- $s.= "...|<input class='center' type='image' src='".$type['IMG']."' alt='".$type['OC']."'>".
- " ".$type['TITLE']." (".$type['OC'].")|dep_new_".$type['OC']."|\n";
- }
- }
-
- /* Add remove action
- */
- $s.= "..|---|\n";
- $s.= "..|<img src='images/lists/trash.png' alt='' border='0' class='center'>".
- " "._("Remove")."|"."remove_multiple|\n";
-
-
- $this->SetDropDownHeaderMenu($s);
- $this->SetListHeader($listhead);
- }
-
- function execute()
- {
- $this->ClearElementsList();
- $this->GenHeader();
- }
-
- function setEntries($list)
- {
- $linkopen = "<a href='?plug=".$_GET['plug']."&post_id=".$this->post_id."&act=dep_open&dep_id=%s'>%s</a>";
- $types = $this->parent->get_support_departments();
- $this->departments = $list;
-
- $ui = get_userinfo();
- foreach($list as $key => $val) {
-
- $actions= "";
-
- /* Detect department type
- */
- $dep_data = array();
- foreach($types as $type => $data){
- if(in_array($type,$val['objectClass'])){
- $dep_data = $data;
- break;
- }
- }
-
- /* Warn if there was an unknown department type found
- */
- if(!count($dep_data)) {
- trigger_error("Unknown department type given. Skipped '".$val['dn']."'.");
- continue;
- }
-
- /* Get permissions
- */
- $acl = $ui->get_permissions($val['dn'],"department/".$dep_data['ACL']);
-
- /* Create actions
- */
- $actions.= "<input class='center' type='image' src='images/lists/edit.png'
- alt='"._("edit")."' name='dep_edit_%KEY%' title='"._("Edit this entry")."'>";
- if(preg_match("/d/",$acl)){
- $actions.= "<input class='center' type='image' src='images/lists/trash.png'
- alt='"._("delete")."' name='dep_del_%KEY%' title='"._("Delete this entry")."'>";
- }
-
- /* Create entry name
- */
- $name = $val[$dep_data['ATTR']][0];
- if(isset($val['description'])){
- $name .= " - [".$val["description"][0]."]";
- }
-
- /* Create title
- */
- $title = LDAP::fix($val['dn']);
-
- /* Create checkboxes infront of the entry
- */
- if($name == "."){
- $field01 = array("string" => " ",
- "attach" => "style='width:20px;'");
- }else{
- $field01 = array("string" => "<input type='checkbox' id='item_selected_".$key."' name='item_selected_".$key."'>" ,
- "attach" => "style='width:20px;'");
- }
-
- $img = "<img alt='".$dep_data['ATTR']."' src='".$dep_data['IMG']."'
- class='center' title='".$dep_data['TITLE']."'>";
-
- /* Append data to the listing
- */
- $field0 = array("string" => $img, "attach" => "style='text-align:center;width:20px;'");
- $field1 = array("string" => sprintf($linkopen,$key,$name),
- "attach" => "style='' title='".$title."'");
- $field2 = array("string" => preg_replace("/%KEY%/", $key, $actions),
- "attach" => "style='width:60px;border-right:0px;text-align:right;'");
-
- $this->AddElement( array($field01,$field0,$field1,$field2));
- }
-
- /* Create summary string for list footer */
- $num_deps=count($list);
- $num_dep_str = _("Number of listed departments");
- $str = "<img class='center' src='images/lists/folder.png'
- title='".$num_dep_str."' alt='".$num_dep_str."'> ".$num_deps." ";
- $this->set_List_Bottom_Info($str);
-
- }
- function Save()
- {
- MultiSelectWindow::Save();
- }
-
- function save_object()
- {
- /* Save automatic created POSTs like regex, checkboxes */
- MultiSelectWindow::save_object();
- }
-}
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>