]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_holiday.php
Heavy rewrite:
[mailer.git] / inc / modules / admin / what-list_holiday.php
index 83c1a6689b5de3f84e29003d16533c7780237120..0dc684b1498ee2a040bf33bddbefc142a7e6ae15 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Alle Urlaubsschaltungen auflisten                *
  * -------------------------------------------------------------------- *
- * $Revision:: 856                                                    $ *
- * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009)              $ *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author:: stelzi                                                   $ *
+ * $Author::                                                          $ *
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
 
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+ADD_DESCR('admin', __FILE__);
 
 // Start listing holiday requests
 $result = SQL_QUERY("SELECT h.id, h.userid, h.holiday_start, h.holiday_end, h.comments, d.status, d.last_online
@@ -54,21 +54,21 @@ ORDER BY h.userid", __FILE__, __LINE__);
 
 if (SQL_NUMROWS($result) > 0) {
        // List all holiday requests
-       $OUT = ""; $SW = 2;
+       $OUT = ''; $SW = 2;
        while ($content = SQL_FETCHARRAY($result)) {
                // Add three dashes to comment when it is empty
-               if (empty($content['comments'])) $content['comments'] = "---";
+               if (empty($content['comments'])) $content['comments'] = '---';
 
                // Prepare data for the row template
                $content = array(
                        'sw'       => $SW,
                        'id'       => $content['id'],
-                       'uid'      => ADMIN_USER_PROFILE_LINK($content['userid']),
-                       'start'    => MAKE_DATETIME($content['holiday_start'], "3"),
-                       'end'      => MAKE_DATETIME($content['holiday_end'], "3"),
+                       'uid'      => generateUserProfileLink($content['userid']),
+                       'start'    => generateDateTime($content['holiday_start'], '3'),
+                       'end'      => generateDateTime($content['holiday_end'], '3'),
                        'comments' => wordwrap($content['comments'], 15),
-                       'status'   => TRANSLATE_STATUS($content['status']),
-                       'last'     => MAKE_DATETIME($content['last_online'], "3"),
+                       'status'   => translateUserStatus($content['status']),
+                       'last'     => generateDateTime($content['last_online'], '3'),
                );
 
                // Load row template and switch color
@@ -86,7 +86,7 @@ if (SQL_NUMROWS($result) > 0) {
        LOAD_TEMPLATE("admin_list_holiday");
 } else {
        // No holiday requests found
-       LOAD_TEMPLATE("admin_settings_saved", false, getMessage('HOLIDAY_ADMIN_NOTHING_FOUND'));
+       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('HOLIDAY_ADMIN_NOTHING_FOUND'));
 }
 
 //