From: hickert Date: Tue, 18 Jul 2006 11:56:11 +0000 (+0000) Subject: Added new show_*_header to environemnt X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3995bdb89e4ded73142a9b5dc415e47285f3566f;p=gosa.git Added new show_*_header to environemnt git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4206 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/personal/environment/class_environment.inc b/plugins/personal/environment/class_environment.inc index 6896c217f..4ae4d3a81 100644 --- a/plugins/personal/environment/class_environment.inc +++ b/plugins/personal/environment/class_environment.inc @@ -294,7 +294,7 @@ class environment extends plugin /* Group Dialog with enabled environment options */ if ($this->is_account){ - $display= $this->show_header(_("Remove environment extension"), + $display= $this->show_enable_header(_("Remove environment extension"), _("Environment extension enabled. You can disable it by clicking below.")); } else { @@ -304,12 +304,12 @@ class environment extends plugin */ if((isset($this->parent->by_object['group']))||(isset($this->attrs['objectClass']))&&((in_array("posixAccount",$this->attrs['objectClass'])))){ // 4. There is a PosixAccount - $display= $this->show_header(_("Add environment extension"), + $display= $this->show_enable_header(_("Add environment extension"), _("Environment extension disabled. You can enable it by clicking below.")); return $display; }else{ // 4. There is no PosixAccount - $display= $this->show_header(_("Add environment extension"), + $display= $this->show_enable_header(_("Add environment extension"), _("Environment extension disabled. You have to setup a posix account before you can enable this feature.")); return $display; } @@ -331,18 +331,18 @@ class environment extends plugin // 3. Account enabled . Editing from adminmenu if ($this->is_account){ - $display= $this->show_header(_("Remove environment extension"), + $display= $this->show_disable_header(_("Remove environment extension"), _("Environment extension enabled. You can disable it by clicking below.")); } else { if($this->parent->by_object['posixAccount']->is_account==true){ // 4. There is a PosixAccount - $display= $this->show_header(_("Add environment extension"), + $display= $this->show__disable_header(_("Add environment extension"), _("Environment extension disabled. You can enable it by clicking below.")); return $display; }else{ // 4. There is a PosixAccount - $display= $this->show_header(_("Add environment extension"), + $display= $this->show_disable_header(_("Add environment extension"), _("Environment extension disabled. You have to setup a posix account before you can enable this feature."),TRUE,TRUE); return $display; }