Code

Updated buttons
[gosa.git] / gosa-core / plugins / admin / groups / class_groupManagement.inc
index 8a86eb0cdb7d480b98db847fe34152ee81a4d84c..76f6d4808c3910a9177cfa6f1f5b5994ac5e2442 100644 (file)
@@ -67,11 +67,71 @@ class groupManagement extends management
     $this->registerAction("edit_environment","editEntry");
     $this->registerAction("edit_appgroup","editEntry");
     $this->registerAction("edit_mailgroup","editEntry");
+
+    $this->registerAction("sendMessage", "sendMessage");
+    $this->registerAction("saveEventDialog", "saveEventDialog");
+    $this->registerAction("abortEventDialog", "closeDialogs");
+  }
+
+  // Inject user actions
+  function detectPostActions()
+  {
+    $action = management::detectPostActions();
+    if(isset($_POST['save_event_dialog'])) $action['action'] = "saveEventDialog";
+    if(isset($_POST['abort_event_dialog'])) $action['action'] = "abortEventDialog";
+    return($action);
+  }
+
+
+  /*! \brief  Sends a message to a set of users using gosa-si events.
+   */
+  function saveEventDialog()
+  {
+    $this->dialogObject->save_object();
+    $msgs = $this->dialogObject->check();
+    if(count($msgs)){
+      msg_dialog::displayChecks($msgs);
+    }else{
+      $o_queue = new gosaSupportDaemon();
+      $o_queue->append($this->dialogObject);
+      if($o_queue->is_error()){
+        msg_dialog::display(_("Infrastructure error"), msgPool::siError($o_queue->get_error()),ERROR_DIALOG);
+      }
+      $this->closeDialogs();
+    }
   }
 
+
+  /*! \brief  Sends a message to a set of users using gosa-si events.
+   */
+  function sendMessage($action="",$target=array(),$all=array())
+  {
+    $uids = array();
+    $ldap = $this->config->get_ldap_link();
+    $ldap->cd($this->config->current['BASE']);
+    foreach($target as $dn){
+      $ldap->cat($dn,array('cn'));
+      if($ldap->count()){
+        $attrs = $ldap->fetch();
+        $uids[] = $attrs['cn'][0];
+      }
+    }
+    if(count($uids)){
+      $events = DaemonEvent::get_event_types(USER_EVENT);
+      $event = "DaemonEvent_notify";
+      if(isset($events['BY_CLASS'][$event])){
+        $type = $events['BY_CLASS'][$event];
+        $this->dialogObject = new $type['CLASS_NAME']($this->config);
+        $this->dialogObject->add_groups($uids);
+        $this->dialogObject->set_type(SCHEDULED_EVENT);
+      }
+    }
+  }
+
+
   function editEntry($action="",$target=array(),$all=array(), $altTabClass ="", $altTabType = "", $altAclCategory="")
   {
-    management::editEntry($action,$target);
+    $str = management::editEntry($action,$target);
 
     if(preg_match("/^edit_/",$action)){
       $tab = preg_replace("/^edit_/","",$action);
@@ -81,6 +141,7 @@ class groupManagement extends management
         trigger_error("Unknown tab: ".$tab);
       }
     }
+    if(!empty($str)) return($str);
   }
 
   static function filterProperties($row, $classes)
@@ -90,7 +151,7 @@ class groupManagement extends management
     $map = array(
         "posixGroup" => 
         array(
-          "image" => "plugins/groups/images/groups.png",
+          "image" => "plugins/groups/images/select_group.png",
           "plugin" => "group",
           "alt" => _("Posix"),
           "title" => _("Edit posix properties")
@@ -123,7 +184,7 @@ class groupManagement extends management
         "gotoMenuGroup" => 
           array(
               "image" => "plugins/groups/images/menu.png",
-              "plugin" => "groupApplication",
+              "plugin" => "appgroup",
               "alt" => _("Menu"),
               "title" => _("Edit start menu properties")
               ),
@@ -141,11 +202,9 @@ class groupManagement extends management
     // Walk thru map
     foreach ($map as $oc => $properties) {
       if (in_array_ics($oc, $classes)) {
-        $result.="<input class='center' type='image' src='".$properties['image']."' ".
-          "alt='".$properties['alt']."' title='".$properties['title'].
-                 "' name='listing_edit_".$properties['plugin']."_$row' style='padding:1px'>";
+        $result.= image($properties['image'], 'listing_edit_'.$properties['plugin'].'_'.$row, $properties['title']);
       } else {
-        $result.="<img src='images/empty.png' alt=' ' class='center' style='padding:1px'>";
+        $result.= image('images/empty.png');
       }
     }
     return $result;