A lot has been rewritten, ext-teams added, ext-forced continued:
[mailer.git] / inc / modules / admin / what-list_cats.php
index 239af59c82d641762e1cb5e076f5875903007e2c..d17404da55a384594bba010ef8eea1a7aa62c16b 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 01/27/2004 *
- * ================                             Last change: 07/13/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 01/27/2004 *
+ * ===================                          Last change: 07/13/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-list_cats.php                               *
  * Kurzbeschreibung  : Ausgewaehlte Kategorien eines Mitgliedes         *
  *                     auflisten                                        *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+addYouAreHereLink('admin', __FILE__);
 
-if (!empty($_GET['u_id'])) {
+if (isGetRequestParameterSet('userid')) {
        // Check if the user already exists
-       $result = SQL_QUERY_ESC("SELECT surname, family, email FROM `"._MYSQL_PREFIX."_user_data` WHERE userid=%s LIMIT 1",
-        array(bigintval($_GET['u_id'])), __FILE__, __LINE__);
-       if (SQL_NUMROWS($result) == 1) {
+       if (fetchUserData(getRequestParameter('userid'))) {
                // Loads surname, family's name and the email address
-               list($sname, $fname, $email) = SQL_FETCHROW($result);
-               SQL_FREERESULT($result);
+               $content = getUserDataArray();
 
                // Prepare constants
-               define('__CATS_BASE'   , "<A href=\"".URL."/modules.php?module=admin&amp;u_id=");
-               define('__UID'         , bigintval($_GET['u_id']));
-               define('__MEMBER_LINKS', MEMBER_ACTION_LINKS(__UID));
-               define('__EMAIL'       , "<A href=\"".CREATE_EMAIL_LINK($email, "user_data")."\">".$sname." ".$fname."</A>");
+               // @TODO No longer needed? define('__CATEGORIES_BASE'   , '<a href="{%url=modules.php?module=admin&amp;userid=');
+               $content['email']  = '<a href="' . generateEmailLink($content['email'], 'user_data') . '">{%pipe,translateGender=' . $content['gender'] . '%} ' . $content['surname'] . ' ' . $content['family'] . '</a>';
 
                // Ok, list categories of this user
-               $result_cats = SQL_QUERY("SELECT id, cat FROM "._MYSQL_PREFIX."_cats ORDER BY sort", __FILE__, __LINE__);
+               $result_cats = SQL_QUERY("SELECT `id`,`cat` FROM `{?_MYSQL_PREFIX?}_cats` ORDER BY `sort` ASC", __FILE__, __LINE__);
 
-               if (SQL_NUMROWS($result_cats) > 0) {
+               if (!SQL_HASZERONUMS($result_cats)) {
                        // List categories
-                       $cnt = "1"; $SW = 2; $OUT = "";
-                       while (list($cid, $cat) = SQL_FETCHROW($result_cats)) {
+                       $count = 1; $OUT = '';
+                       while ($row = SQL_FETCHARRAY($result_cats)) {
+                               // Merge both arrays
+                               $content = merge_array($content, $row);
+
                                // Check user's selection
-                               $result_user = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_cats WHERE userid=%s AND cat_id=%s LIMIT 1",
-                                array(bigintval($_GET['u_id']), bigintval($cid)), __FILE__, __LINE__);
+                               // @TODO Rewrite this to countSum.....() function
+                               $result_user = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `userid`=%s AND `cat_id`=%s LIMIT 1",
+                                       array(bigintval(getRequestParameter('userid')), bigintval($content['id'])), __FILE__, __LINE__);
 
                                // Set selection
-                               $SELECTED = "<FONT color=\"red\">".NO."</FONT>";
-                               if (SQL_NUMROWS($result_user) == 1) $SELECTED = "<FONT color=\"green\">".YES."</FONT>";
+                               $selection = '<font color="#ee0000">{--NO--}</div>';
+                               if (SQL_NUMROWS($result_user) == 1) {
+                                       $selection = '<font color="#00ee00">{--YES--}</div>';
+                               } // END - if
 
-                               // Prepare array for the row template
-                               $content = array(
-                                       'sw'  => $SW,
-                                       'cnt' => $cnt,
-                                       'cat' => $cat,
-                                       'sel' => $SELECTED,
-                               );
+                               // Add more elements
+                               $content['count'] = $count;
+                               $content['sel']   = $selection;
 
-                               // Load row template and switch colors + count up
-                               $OUT .= LOAD_TEMPLATE("admin_list_cats_row", true, $content);
-                               $SW = 3 - $SW; $cnt++;
-                       }
+                               // Load row template and count up
+                               $OUT .= loadTemplate('admin_list_user_cats_row', true, $content);
+                               $count++;
+                       } // END - while
 
                        // Free memory
-                       SQL_FREERESULT($result);
-                       define('__CATS_ROWS', $OUT);
+                       SQL_FREERESULT($result_cats);
+
+                       // Remember all rows in the array
+                       $content['rows'] = $OUT;
 
                        // Load main template
-                       LOAD_TEMPLATE("admin_list_cats");
+                       loadTemplate('admin_list_user_cats', false, $content);
                } else {
                        // No categories selected! :-(
-                       LOAD_TEMPLATE("admin_list_cats_404");
+                       loadTemplate('admin_list_user_cats_404', false, $content);
                }
        } else {
                // User not found
-               LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_MEMBER_404_1.__UID.ADMIN_MEMBER_404_2);
+               displayMessage('{%message,ADMIN_MEMBER_404=' . $content['userid'] . '%}');
        }
 } else {
        // Output selection form with all confirmed user accounts listed
-       ADD_MEMBER_SELECTION_BOX();
+       addMemberSelectionBox();
 }
 
-//
+// [EOF]
 ?>