dn= $dn;
$this->config= &$config;
$baseobject= NULL;
foreach ($data as &$tab){
$this->by_name[$tab['CLASS']]= $tab['NAME'];
if ($baseobject === NULL){
$baseobject= new $tab['CLASS']($this->config, $this->dn);
$baseobject->enable_CSN_check();
$this->by_object[$tab['CLASS']]= $baseobject;
} else {
$this->by_object[$tab['CLASS']]= new $tab['CLASS']($this->config, $this->dn, $baseobject);
}
$this->by_object[$tab['CLASS']]->parent= &$this;
$this->by_object[$tab['CLASS']]->set_acl_category($acl_category);
/* Initialize current */
if ($this->current == ""){
$this->current= $tab['CLASS'];
}
}
}
function execute()
{
/* Rotate current to last */
$this->last= $this->current;
/* Look for pressed tab button */
foreach ($this->by_object as $class => &$obj){
if (isset($_POST[$class]) || (isset($_POST['arg']) && $_POST['arg'] == "$class")){
$this->current= $class;
break;
}
}
/* Save last tab object */
if ($this->last == $this->current){
$this->save_object(TRUE);
} else {
$this->save_object(FALSE);
}
/* Build tab line */
$display= $this->gen_tabs();
/* Show object */
$display.= "
\n";
$display.= "
\n";
/* If multiple edit is enabled for this tab,
we have tho display different templates */
if(!$this->multiple_support_active){
$display.= $this->by_object[$this->current]->execute();
}else{
$display.= $this->by_object[$this->current]->multiple_execute();
}
/* Footer for tabbed dialog */
$display.= "
";
return ($display);
}
function save_object($save_current= FALSE)
{
/* Save last tab */
if ($this->last != ""){
@DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__,
$this->last, "Saving");
if(!$this->multiple_support_active){
$this->by_object[$this->last]->save_object ();
}else{
$this->by_object[$this->last]->multiple_save_object();
}
}
/* Skip if curent and last are the same object */
if ($this->last == $this->current){
return;
}
$obj= @$this->by_object[$this->current];
$this->disabled= $obj->parent->disabled;
if ($save_current){
@DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__,
$this->current, "Saving (current)");
if(!$this->multiple_support_active){
$obj->save_object();
}else{
$obj->multiple_save_object();
}
}
}
function gen_tabs()
{
$display= "";
$display.= "
";
$index= 0;
$style= array("tab_left", "tab_active", "tab_near_active", "tab_right");
foreach ($this->by_name as $class => $name){
/* Activate right tabs with style "tab_right"
Activate near current with style "tab_near_active" */
if ($index == 2 || $index == 1){
$index++;
}
/* Activate current tab with style "tab_active " */
if ($class == $this->current){
$index++;
}
/* Paint tab */
$display.= "
";
/* Shorten string if its too long for the tab headers*/
$title= _($name);
if (mb_strlen($title, 'UTF-8') > 28){
$title= mb_substr($title,0, 25, 'UTF-8')."...";
}
/* nobr causes w3c warnings so we use to keep the tab name in one line */
$title= preg_replace("/ /"," ",$title);
/* Take care about notifications */
$obj = $this->by_object[$class];
if ( $this->by_object[$class]->pl_notify && ($obj->is_account || $obj->ignore_account)){
$notify= "id=\"notify\"";
} else {
$notify= "";
}
if ($_SESSION['js']==FALSE){
$display.= "