is missing
[mailer.git] / inc / modules / admin / what-list_holiday.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 07/24/2004 *
4  * ================                             Last change: 08/01/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_holiday.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : List all holiday requests                        *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle Urlaubsschaltungen auflisten                *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
41         die();
42 }
43
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
46
47 // Start listing holiday requests
48 $result = SQL_QUERY("SELECT h.id, h.userid, h.holiday_start, h.holiday_end, h.comments, d.status, d.last_online
49 FROM `{?_MYSQL_PREFIX?}_user_holidays` AS h
50 LEFT JOIN `{?_MYSQL_PREFIX?}_user_data` AS d
51 ON h.userid=d.userid
52 ORDER BY h.userid", __FILE__, __LINE__);
53
54 if (SQL_NUMROWS($result) > 0) {
55         // List all holiday requests
56         $OUT = ''; $SW = 2;
57         while ($content = SQL_FETCHARRAY($result)) {
58                 // Add three dashes to comment when it is empty
59                 if (empty($content['comments'])) $content['comments'] = '---';
60
61                 // Prepare data for the row template
62                 $content = array(
63                         'sw'       => $SW,
64                         'id'       => $content['id'],
65                         'userid'      => generateUserProfileLink($content['userid']),
66                         'start'    => generateDateTime($content['holiday_start'], 3),
67                         'end'      => generateDateTime($content['holiday_end'], 3),
68                         'comments' => wordwrap($content['comments'], 15),
69                         'status'   => translateUserStatus($content['status']),
70                         'last_online'     => generateDateTime($content['last_online'], 3),
71                 );
72
73                 // Load row template and switch color
74                 $OUT .= loadTemplate('admin_list_holiday_row', true, $content);
75                 $SW = 3 - $SW;
76         }
77
78         // Free memory
79         SQL_FREERESULT($result);
80
81         // Load main template
82         loadTemplate('admin_list_holiday', false, $OUT);
83 } else {
84         // No holiday requests found
85         loadTemplate('admin_settings_saved', false, getMessage('HOLIDAY_ADMIN_NOTHING_FOUND'));
86 }
87
88 // [EOF]
89 ?>