summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1d0ae7b)
raw | patch | inline | side by side (parent: 1d0ae7b)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 19 Dec 2007 10:36:58 +0000 (10:36 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 19 Dec 2007 10:36:58 +0000 (10:36 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8143 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_multi_plug.inc | patch | blob | history |
index 89f02568790d8d230cb0fda96a537d0cd256c90c..5a624257fb8652258700138a172b34d17457b543 100644 (file)
public $config = NULL;
private $s_class= "";
public $current = "";
+ public $by_object = array();
+ public $by_name = array();
/*! \brief Creates a multi_plug object
@param object $config GOsa Configuration object
*/
$this->o_tab = new $class($config,$tab,"new",$acl_category);
$this->o_tab->set_acl_base($acl_base);
+ $this->by_object = &$this->o_tab->by_object;
+ $this->by_name = &$this->o_tab->by_name;
+ $this->current = &$this->o_tab->current;
/* Check if the specified tab object supports multiple edits
*/
*/
public function execute()
{
- return($this->o_tab->execute());
+ $str = $this->o_tab->execute();
+ return($str);
}