summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4fe71df)
raw | patch | inline | side by side (parent: 4fe71df)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 15 May 2008 15:34:22 +0000 (15:34 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 15 May 2008 15:34:22 +0000 (15:34 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10921 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/addons/goto/events/class_DaemonEvent_activate.inc | patch | blob | history |
diff --git a/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_activate.inc b/gosa-plugins/goto/addons/goto/events/class_DaemonEvent_activate.inc
index 3a1e384edf8eae47b6f3a5e254652d6f05be106a..321133327b2cc37746a68beac0b8c0a10aa5354d 100644 (file)
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-class DaemonEvent_activate extends DaemonEvent
+class DaemonEvent_unlock extends DaemonEvent
{
var $visible_for = SYSTEM_EVENT;
public function __construct($config,$data = array())
{
DaemonEvent::__construct($config,$data);
- $this->s_Menu_Name = _("Activate");
- $this->s_Event_Name = _("Activate");
+ $this->s_Menu_Name = _("Unlock");
+ $this->s_Event_Name = _("Unlock");
$this->s_Schedule_Action = "job_trigger_action_activate";
$this->s_Trigger_Action= "gosa_trigger_action_activate";
$this->s_Queued_Action= "trigger_action_activate";
$smarty->assign("target_list" , $this->get_target_list());
$smarty->assign("is_new" , $this->is_new);
$smarty->assign("timestamp" , $this->get_time_select());
- $display.= $smarty->fetch(get_template_path('DaemonEvent_activate.tpl', TRUE, dirname(__FILE__)));
+ $display.= $smarty->fetch(get_template_path('DaemonEvent_unlock.tpl', TRUE, dirname(__FILE__)));
$display.= $this->get_footer();
return($display);
}