summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6edb16c)
raw | patch | inline | side by side (parent: 6edb16c)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 20 Nov 2006 07:31:32 +0000 (07:31 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 20 Nov 2006 07:31:32 +0000 (07:31 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@5158 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/fai/class_faiSummaryTab.inc | patch | blob | history |
index eba31ee2a38c82469a6ac3a0957e0d6c111fff91..ef61be6f67f38b2f72743df0780ef7d6ff887535 100644 (file)
var $usedClasses = array();
var $base = "";
var $parent = NULL;
+ var $ui = NULL;
- function faiSummaryTab($config,$dn,$parent)
+ function faiSummaryTab($config,$dn)//,$parent)
{
- plugin::plugin($config,$dn,$parent);
+ plugin::plugin($config,$dn);//,$parent);
+
+ $this->ui = get_userinfo();
/* Base object configuration */
$this->objs = array(
$this->InitCalled = true;
$this->Result = array();
$_SESSION['faiSummaryTab']['UniqueID'] = 0;
-
+
/* Get classes & release name
There are 2 different tabs which use the summary tab
faiProfile / Workstations */
}elseif(isset($this->parent->by_name['workstartup'])){
$this->Classes = $this->parent->by_object['workstartup']->FAIclass;
$this->Release = $this->parent->by_object['workstartup']->FAIrelease;
- $this->base = $this->parent->by_object['workgeneric']->base;
+ /* Check if this is a workstation or an object group */
+ if(isset($this->parent->by_object['workgeneric'])){
+ $this->base = $this->parent->by_object['workgeneric']->base;
+ }elseif(isset($this->parent->by_object['ogroup'])){
+ $this->base = $this->parent->by_object['ogroup']->base;
+ }else{
+ print_red(_("Unknown type of FAI source information. This is not a profile, workstation nor a ogroup."));
+ }
+
/* Append workstation class && LAST */
if(isset($this->parent->by_object['workgeneric']->cn)){
$this->Classes[] = $this->parent->by_object['workgeneric']->cn;
$this->Classes[] = "LAST";
+ /* You need full access to complete collection of fai acls to view this summary */
+ $acl = $this->ui->has_complete_category_acls($this->base,"fai");
+ if(!preg_match("/r/",$acl)){
+ $this->Classes = array();
+ }
+
/* Set all available releases */
$this->Releases = $tmp;
$this->usedClasses = array();
/* Get smarty class & assign created summary results */
$smarty = get_smarty();
- $smarty->assign("readable",$this->acl_is_readable("readable"));
+ $acl = $this->ui->has_complete_category_acls($this->base,"fai");
+ $smarty->assign("readable", preg_match("/r/",$acl));
$this->ObjectList = $this->createSummary($this->Result);
$smarty->assign("objectList",$this->ObjectList);
$image = "<img src='".$this->objs[$key]['Image']."' class='center' alt='".$this->objs[$key]['Name']."' border=0>";
if(!isset($entry['Open'])){
$str .= "<tr><td colspan=2>
- <a href='?plug=".$_GET['plug']."&expand&id=".$key."'>
+ <a href='?plug=".$_GET['plug']."&expand&id=".$key."'>
<img border=0 class='center' src='images/expand.png' alt='"._("Open")."'> ";
$str .= $image." ";
$str .= "<b>".$this->objs[$key]['Name']."</b></b></td></tr>";
}else{
$str .= "<tr><td colspan=2>
- <a href='?plug=".$_GET['plug']."&compress&id=".$key."'>
+ <a href='?plug=".$_GET['plug']."&compress&id=".$key."'>
<img border=0 class='center' src='images/sort_down.png' alt='"._("Close")."'> ";
$str .= $image." ";
$str .= "<b>".$this->objs[$key]['Name']."</b></a></td></tr>";
$str .="<tr><td style='padding-left:20px;'>";
}
- $str .= "<a target='_blank' href='?plug=".$_GET['plug']."&show&type=".$key."&id=".base64_encode($data['dn'])."'>";
+ $str .= "<a target='_blank' href='?plug=".$_GET['plug']."&show&type=".$key."&id=".base64_encode($data['dn'])."'>";
$str .= $image." ";
if(isset($data['FAIpriority'][0])){
$str .= "(".$data['FAIpriority'][0].")";
$dn = $this->Releases [$this->Release];
$resolvedClasses = get_all_objects_for_given_base($dn,"(&(objectClass=FAIclass)(cn=".$class."))");
- /* Check acls -> are we allowed to view the sonfig summary ? */
+ /* Check acls -> are we allowed to view the config summary ? */
if(!$this->acl_is_readable("readable")) {
return;
}
}
}
- /* Return plugin informations for acl handling */
+ /* Return plugin informations for acl handling * /
function plInfo()
{
return (array(
"plDepends" => array(),
"plPriority" => 15,
"plSection" => array("administration"),
- "plCategory" => array("workstation","server","fai") ,
+ "plCategory" => array("workstation","server","fai","ogroups") ,
"plProvidedAcls"=> array(
"readable" => _("Viewable")),
));
}
-
+ */
}
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
?>