summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 77208c9)
raw | patch | inline | side by side (parent: 77208c9)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 20 Apr 2010 13:26:12 +0000 (13:26 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 20 Apr 2010 13:26:12 +0000 (13:26 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17742 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_tabs.inc | patch | blob | history |
index c40a7436268970c943e58295680139a94de32454..a529f87a39342bfe7d3686f372b847ced43d3be3 100644 (file)
$display= $this->by_object[$this->current]->multiple_execute();
}
$tabs= $this->gen_tabs();
- $display =
- "\n {$tabs}".
- "\n <input type='hidden' name='arg' value=''>".
- "\n <div class='tab-content'>".
- "\n {$display}".
- "\n </div>";
+ if($this->is_modal_dialog()){
+ $display =
+ "\n <div class='plugin'>".
+ "\n {$display}".
+ "\n </div>";
+ }else{
+
+ $display =
+ "\n {$tabs}".
+ "\n <input type='hidden' name='arg' value=''>".
+ "\n <div class='tab-content'>".
+ "\n {$display}".
+ "\n </div>";
+ }
return ($display);
}