~ubuntu-branches/ubuntu/vivid/gosa/vivid

« back to all changes in this revision

Viewing changes to goto/addons/goto/events/class_DaemonEvent_halt.inc

Tags: 2.7.1-1
* New upstream release
* Updated packaging to not include smarty (Closes: #620489)
* Fixed case of POSIX (Closes: #620486)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/*
 
3
 * This code is part of GOsa (http://www.gosa-project.org)
 
4
 * Copyright (C) 2003-2008 GONICUS GmbH
 
5
 *
 
6
 * ID: $$Id: class_DaemonEvent_halt.inc 19060 2010-07-23 09:33:51Z hickert $$
 
7
 *
 
8
 * This program is free software; you can redistribute it and/or modify
 
9
 * it under the terms of the GNU General Public License as published by
 
10
 * the Free Software Foundation; either version 2 of the License, or
 
11
 * (at your option) any later version.
 
12
 *
 
13
 * This program is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * GNU General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU General Public License
 
19
 * along with this program; if not, write to the Free Software
 
20
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
21
 */
 
22
 
 
23
class DaemonEvent_halt extends DaemonEvent
 
24
{
 
25
 
 
26
    var $visible_for = SYSTEM_EVENT;
 
27
 
 
28
    public function __construct($config,$data = array())
 
29
    {
 
30
        DaemonEvent::__construct($config,$data);
 
31
        $this->s_Menu_Name  = _("Switch off");
 
32
        $this->s_Event_Name = _("Switch off");
 
33
        $this->s_Schedule_Action = "job_trigger_action_halt";
 
34
        $this->s_Trigger_Action= "gosa_trigger_action_halt";
 
35
        $this->s_Queued_Action= "trigger_action_halt";
 
36
        $this->s_Menu_Image = "images/lists/off.png";
 
37
        $this->s_List_Image = "images/lists/off.png";
 
38
    }
 
39
 
 
40
    public function execute()
 
41
    {
 
42
        DaemonEvent::execute();
 
43
 
 
44
        $display = $this->get_header();
 
45
 
 
46
        $tmp = $this->data;
 
47
 
 
48
        /* Check if target add dialog is open */
 
49
        if($this->is_target_list_open() && $this->is_new){
 
50
            return($this->get_target_add_list());
 
51
        }
 
52
 
 
53
        $smarty = get_smarty();
 
54
        $smarty->assign("data"        , $this->data);
 
55
        $smarty->assign("target_list" , $this->get_target_list());
 
56
        $smarty->assign("is_new"      , $this->is_new);
 
57
        $smarty->assign("timestamp"   , $this->get_time_select());
 
58
        $display.= $smarty->fetch(get_template_path('DaemonEvent_halt.tpl', TRUE, dirname(__FILE__)));
 
59
        $display.= $this->get_footer();
 
60
        return($display);
 
61
    }
 
62
 
 
63
    public function save_object()
 
64
    {
 
65
        DaemonEvent::save_object();
 
66
    }
 
67
 
68
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 
69
?>