Code

Fixed post handling.
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 23 Jul 2010 09:34:13 +0000 (09:34 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 23 Jul 2010 09:34:13 +0000 (09:34 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19068 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/goto/addons/goto/events/class_DaemonEvent_recreate_fai_release_db.inc

index f882842f6ce9f2ec3a564cbf200364ac37a6378e..4750a12fc4ec829b7d554da5954ea9d903090931 100644 (file)
 
 class DaemonEvent_recreate_fai_release_db extends DaemonEvent
 {
-  var $visible_for = HIDDEN_EVENT;
+    var $visible_for = HIDDEN_EVENT;
 
-  public function __construct($config,$data = array())
-  {
-    DaemonEvent::__construct($config,$data);
-    $this->s_Menu_Name  = _("Reload fai release db"); 
-    $this->s_Event_Name = _("Reload fai release db"); 
-    $this->s_Schedule_Action= "gosa_recreate_fai_release_db";
-    $this->s_Trigger_Action = "gosa_recreate_fai_release_db";
-    $this->s_Queued_Action  = "recreate_fai_release_db";
-    $this->s_Menu_Image = "images/edit.png";
-    $this->s_List_Image = "images/edit.png";
-  }
+    public function __construct($config,$data = array())
+    {
+        DaemonEvent::__construct($config,$data);
+        $this->s_Menu_Name  = _("Reload fai release db"); 
+        $this->s_Event_Name = _("Reload fai release db"); 
+        $this->s_Schedule_Action= "gosa_recreate_fai_release_db";
+        $this->s_Trigger_Action = "gosa_recreate_fai_release_db";
+        $this->s_Queued_Action  = "recreate_fai_release_db";
+        $this->s_Menu_Image = "images/edit.png";
+        $this->s_List_Image = "images/edit.png";
+    }
 
-  public function execute()
-  {
-    DaemonEvent::execute();
-    return("Cannot be displayed");
-  }
+    public function execute()
+    {
+        DaemonEvent::execute();
+        return("Cannot be displayed");
+    }
 
-  public function save_object()
-  {
-    DaemonEvent::save_object();
-  }
+    public function save_object()
+    {
+        DaemonEvent::save_object();
+    }
 } 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>