win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / modules / member / what-categories.php
index e7cdad1f35cecc2fcb659408d28ef6e62bc27705..e57da751c67143c4b917e6bd905a2aa9d6faa255 100644 (file)
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 10/19/2003 *\r
- * ===============                              Last change: 06/30/2004 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : what-categories.php                              *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Select or unselect categories                    *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Kategorien ab- bzw. anw�hlen                     *\r
- * -------------------------------------------------------------------- *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
- * For more information visit: http://www.mxchange.org                  *\r
- *                                                                      *\r
- * This program is free software; you can redistribute it and/or modify *\r
- * it under the terms of the GNU General Public License as published by *\r
- * the Free Software Foundation; either version 2 of the License, or    *\r
- * (at your option) any later version.                                  *\r
- *                                                                      *\r
- * This program is distributed in the hope that it will be useful,      *\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
- * GNU General Public License for more details.                         *\r
- *                                                                      *\r
- * You should have received a copy of the GNU General Public License    *\r
- * along with this program; if not, write to the Free Software          *\r
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
- * MA  02110-1301  USA                                                  *\r
- ************************************************************************/\r
-\r
-// Some security stuff...\r
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))\r
-{\r
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
-       require($INC);\r
-}\r
- elseif (!IS_LOGGED_IN())\r
-{\r
-       LOAD_URL(URL."/modules.php[13~?module=index");\r
-}\r
-\r
-// Add description as navigation point\r
-ADD_DESCR("member", basename(__FILE__));\r
-\r
-$UID = $GLOBALS['userid'];\r
-$WHERE = " WHERE visible='Y'";\r
-if (IS_ADMIN()) $WHERE = "";\r
-\r
-$result = SQL_QUERY("SELECT id, cat FROM "._MYSQL_PREFIX."_cats".$WHERE." ORDER BY sort", __FILE__, __LINE__);\r
-$cats = SQL_NUMROWS($result);\r
-\r
-if ($cats > 0)\r
-{\r
-       $LEAST = false;\r
-       if (isset($_POST['ok']))\r
-       {\r
-               $cnt = 0;\r
-               foreach ($_POST['cat'] as $cat=>$joined)\r
-               {\r
-                       if ($joined == "N") $cnt++;\r
-               }\r
-               if (($cats - $cnt) < $CONFIG['least_cats'])\r
-               {\r
-                       unset($_POST['ok']);\r
-                       $LEAST = true;\r
-               }\r
-       }\r
-       if (isset($_POST['ok']))\r
-       {\r
-               foreach ($_POST['cat'] as $cat=>$joined)\r
-               {\r
-                       switch ($joined)\r
-                       {\r
-                               case "Y":\r
-                                       $sql = "";\r
-                                       $result_user = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_cats WHERE userid=%d AND cat_id=%d LIMIT 1",\r
-                                        array($UID, bigintval($cat)), __FILE__, __LINE__);\r
-\r
-                                       if (SQL_NUMROWS($result_user) == 0)\r
-                                       {\r
-                                               $sql = "INSERT INTO "._MYSQL_PREFIX."_user_cats (userid, cat_id) VALUES ('%s', '%s')";\r
-                                       }\r
-                                        else\r
-                                       {\r
-                                               // Free memory\r
-                                               SQL_FREERESULT($result_user);\r
-                                       }\r
-                                       break;\r
-\r
-                               case "N":\r
-                                       $sql = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_cats WHERE userid=%d AND cat_id=%d LIMIT 1";\r
-                                       break;\r
-                       }\r
-                       if (!empty($sql))\r
-                       {\r
-                               // Run SQL command\r
-                               $result = SQL_QUERY_ESC(trim($sql), array($UID, bigintval($cat)), __FILE__, __LINE__);\r
-                       }\r
-               }\r
-               // Categories saved...\r
-               LOAD_TEMPLATE("admin_settings_saved", true, MEMBER_CATS_SAVED);\r
-       }\r
-        else\r
-       {\r
-               if ($LEAST)\r
-               {\r
-                       // Also here we have to secure it... :(\r
-                       LOAD_TEMPLATE("admin_settings_saved", true, CATS_LEAST.": ".$CONFIG['least_cats']);\r
-               }\r
-               // Put some data into constants for the template\r
-               define('__ROWS', ($cats*2+4));\r
-\r
-               // Load header template\r
-               LOAD_TEMPLATE("member_cats_header");\r
-\r
-               // Start switching colors and load all visible categories\r
-               $SW = 2;\r
-               while (list($id, $cat) = SQL_FETCHROW($result))\r
-               {\r
-                       // Default he has not joined\r
-                       $JOINED_N = " checked"; $JOINED_Y = "";\r
-\r
-                       // Check category selection\r
-                       $result_user = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_cats WHERE userid=%d AND cat_id=%d LIMIT 1",\r
-                        array($UID, bigintval($id)), __FILE__, __LINE__);\r
-\r
-                       // When we found an entry don't read it, just change the JOINED_x variables\r
-                       if (isset($_POST['cat']))\r
-                       {\r
-                               if ($_POST['cat'][$id] =="Y") { $JOINED_Y = " checked"; $JOINED_N = ""; }\r
-                       }\r
-                        else\r
-                       {\r
-                               if (SQL_NUMROWS($result_user) == 1)\r
-                               {\r
-                                       $JOINED_Y = " checked"; $JOINED_N = "";\r
-                               }\r
-\r
-                               // Free memory\r
-                               SQL_FREERESULT($result_user);\r
-                       }\r
-\r
-                       // Prepare data for the template\r
-                       $content = array(\r
-                               'sw'  => $SW,\r
-                               'id'  => $id,\r
-                               'cat' => $cat,\r
-                               'jy'  => $JOINED_Y,\r
-                               'jn'  => $JOINED_N,\r
-                       );\r
-\r
-                       // Load row template and switch colors\r
-                       LOAD_TEMPLATE("member_cat_row", false, $content);\r
-                       $SW = 3 - $SW;\r
-               }\r
-\r
-               // Load footer template\r
-               LOAD_TEMPLATE("member_cats_footer");\r
-       }\r
-}\r
- else\r
-{\r
-       // No cateogries are defined yet\r
-       LOAD_TEMPLATE("admin_settings_saved", true, MEMBER_NO_CATS);\r
-}\r
-\r
-SQL_FREERESULT($result);\r
-\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 10/19/2003 *
+ * ===============                              Last change: 06/30/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-categories.php                              *
+ * -------------------------------------------------------------------- *
+ * Short description : Select or unselect categories                    *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Kategorien ab- bzw. anw�hlen                     *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
+{
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       require($INC);
+}
+ elseif (!IS_LOGGED_IN())
+{
+       LOAD_URL(URL."/modules.php[13~?module=index");
+}
+
+// Add description as navigation point
+ADD_DESCR("member", basename(__FILE__));
+
+$UID = $GLOBALS['userid'];
+$WHERE = " WHERE visible='Y'";
+if (IS_ADMIN()) $WHERE = "";
+
+$result = SQL_QUERY("SELECT id, cat FROM "._MYSQL_PREFIX."_cats".$WHERE." ORDER BY sort", __FILE__, __LINE__);
+$cats = SQL_NUMROWS($result);
+
+if ($cats > 0)
+{
+       $LEAST = false;
+       if (isset($_POST['ok']))
+       {
+               $cnt = 0;
+               foreach ($_POST['cat'] as $cat=>$joined)
+               {
+                       if ($joined == "N") $cnt++;
+               }
+               if (($cats - $cnt) < $CONFIG['least_cats'])
+               {
+                       unset($_POST['ok']);
+                       $LEAST = true;
+               }
+       }
+       if (isset($_POST['ok']))
+       {
+               foreach ($_POST['cat'] as $cat=>$joined)
+               {
+                       switch ($joined)
+                       {
+                               case "Y":
+                                       $sql = "";
+                                       $result_user = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_cats WHERE userid=%d AND cat_id=%d LIMIT 1",
+                                        array($UID, bigintval($cat)), __FILE__, __LINE__);
+
+                                       if (SQL_NUMROWS($result_user) == 0)
+                                       {
+                                               $sql = "INSERT INTO "._MYSQL_PREFIX."_user_cats (userid, cat_id) VALUES ('%s', '%s')";
+                                       }
+                                        else
+                                       {
+                                               // Free memory
+                                               SQL_FREERESULT($result_user);
+                                       }
+                                       break;
+
+                               case "N":
+                                       $sql = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_cats WHERE userid=%d AND cat_id=%d LIMIT 1";
+                                       break;
+                       }
+                       if (!empty($sql))
+                       {
+                               // Run SQL command
+                               $result = SQL_QUERY_ESC(trim($sql), array($UID, bigintval($cat)), __FILE__, __LINE__);
+                       }
+               }
+               // Categories saved...
+               LOAD_TEMPLATE("admin_settings_saved", true, MEMBER_CATS_SAVED);
+       }
+        else
+       {
+               if ($LEAST)
+               {
+                       // Also here we have to secure it... :(
+                       LOAD_TEMPLATE("admin_settings_saved", true, CATS_LEAST.": ".$CONFIG['least_cats']);
+               }
+               // Put some data into constants for the template
+               define('__ROWS', ($cats*2+4));
+
+               // Load header template
+               LOAD_TEMPLATE("member_cats_header");
+
+               // Start switching colors and load all visible categories
+               $SW = 2;
+               while (list($id, $cat) = SQL_FETCHROW($result))
+               {
+                       // Default he has not joined
+                       $JOINED_N = " checked"; $JOINED_Y = "";
+
+                       // Check category selection
+                       $result_user = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_cats WHERE userid=%d AND cat_id=%d LIMIT 1",
+                        array($UID, bigintval($id)), __FILE__, __LINE__);
+
+                       // When we found an entry don't read it, just change the JOINED_x variables
+                       if (isset($_POST['cat']))
+                       {
+                               if ($_POST['cat'][$id] =="Y") { $JOINED_Y = " checked"; $JOINED_N = ""; }
+                       }
+                        else
+                       {
+                               if (SQL_NUMROWS($result_user) == 1)
+                               {
+                                       $JOINED_Y = " checked"; $JOINED_N = "";
+                               }
+
+                               // Free memory
+                               SQL_FREERESULT($result_user);
+                       }
+
+                       // Prepare data for the template
+                       $content = array(
+                               'sw'  => $SW,
+                               'id'  => $id,
+                               'cat' => $cat,
+                               'jy'  => $JOINED_Y,
+                               'jn'  => $JOINED_N,
+                       );
+
+                       // Load row template and switch colors
+                       LOAD_TEMPLATE("member_cat_row", false, $content);
+                       $SW = 3 - $SW;
+               }
+
+               // Load footer template
+               LOAD_TEMPLATE("member_cats_footer");
+       }
+}
+ else
+{
+       // No cateogries are defined yet
+       LOAD_TEMPLATE("admin_settings_saved", true, MEMBER_NO_CATS);
+}
+
+SQL_FREERESULT($result);
+
+//
+?>