template
[mailer.git] / 0.2.1 / 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  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42
43 // Start listing holiday requests
44 $result = SQL_QUERY("SELECT h.id, h.userid, h.holiday_start, h.holiday_end, h.comments, d.status, d.last_online FROM "._MYSQL_PREFIX."_user_holidays AS h, "._MYSQL_PREFIX."_user_data AS d WHERE h.userid=d.userid ORDER BY h.userid", __FILE__, __LINE__);
45
46 if (SQL_NUMROWS($result) > 0)
47 {
48         // List all holiday requests
49         $SW = 2; $OUT = "";
50         while (list($id, $uid, $start, $end, $comments, $status, $last) = SQL_FETCHROW($result))
51         {
52                 // Add three dashes to comment when it is empty
53                 if (empty($comments)) $comments = "---";
54
55                 // Prepare data for the row template
56                 $content = array(
57                         'sw'       => $SW,
58                         'id'       => $id,
59                         'uid'      => ADMIN_USER_PROFILE_LINK($uid),
60                         'start'    => MAKE_DATETIME($start, "3"),
61                         'end'      => MAKE_DATETIME($end, "3"),
62                         'comments' => wordwrap($comments, 15),
63                         'status'   => TRANSLATE_STATUS($status),
64                         'last'     => MAKE_DATETIME($last, "3"),
65                 );
66
67                 // Load row template and switch color
68                 $OUT .= LOAD_TEMPLATE("admin_list_holiday_row", true, $content);
69                 $SW = 3 - $SW;
70         }
71
72         // Free memory
73         SQL_FREERESULT($result);
74         define('__HOLIDAY_ROWS', $OUT);
75
76         // Load main template
77         LOAD_TEMPLATE("admin_list_holiday");
78 }
79  else
80 {
81         // No holiday requests found
82         LOAD_TEMPLATE("admin_settings_saved", false, HOLIDAY_ADMIN_NOTHING_FOUND);
83 }
84 //
85 ?>