Huge rewrite of default parameters, ext-network continued:
[mailer.git] / inc / modules / admin / what-config_cats.php
index 42e35ff3d078788c0cadbb0212f17c50fa180797..bdbb540774a59947803ce536e28d22a6e10fe246 100644 (file)
@@ -18,7 +18,7 @@
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * 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();
 }
 
 // Add description as navigation point
-ADD_DESCR('admin', __FILE__);
+addMenuDescription('admin', __FILE__);
 
 // Init variable to avoid a notice
 $CATS = '';
 
-if (REQUEST_ISSET_POST(('add'))) {
+if (isPostRequestElementSet('add')) {
        // Add a new category
-       $result = SQL_QUERY_ESC("SELECT `id` FROM `{!_MYSQL_PREFIX!}_cats` WHERE cat='%s' LIMIT 1",
-       array(REQUEST_POST('catname')), __FILE__, __LINE__);
-       if (SQL_NUMROWS($result) == 0) {
+       $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_cats` WHERE cat='%s' LIMIT 1",
+       array(postRequestElement('catname')), __FILE__, __LINE__);
+       if (SQL_NUMROWS($result) == '0') {
                // Category does not exists, we simply add it...
-               SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_cats` (cat, visible, sort) VALUES ('%s','%s','%s')",
-               array(REQUEST_POST('catname'), REQUEST_POST('visible'), bigintval(REQUEST_POST('parent') + 1)), __FILE__, __LINE__);
-               $content = CATEGORY_ADDED;
+               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_cats` (cat, visible, sort) VALUES ('%s','%s','%s')",
+               array(postRequestElement('catname'), postRequestElement('visible'), bigintval(postRequestElement('parent') + 1)), __FILE__, __LINE__);
+               $content = getMessage('CATEGORY_ADDED');
        } else {
                // Category does already exists
-               $content = "<span class=\"admin_failed\">".CATEGORY_ALREADY_EXISTS."</span>";
+               $content = "<span class=\"admin_failed\">{--CATEGORY_ALREADY_EXISTS--}</span>";
        }
 
        // Free memory
        SQL_FREERESULT($result);
 
        // Display message
-       LOAD_TEMPLATE('admin_settings_saved', false, $content);
-} elseif ((isFormSent()) && (REQUEST_ISSET_POST('id')) && (is_array(REQUEST_POST('id')))) {
+       loadTemplate('admin_settings_saved', false, $content);
+} elseif ((isFormSent()) && (isPostRequestElementSet('id')) && (is_array(postRequestElement('id')))) {
        // Change or delete categories...
        $TEXT = '';
-       foreach (REQUEST_POST('id') as $id => $cat) {
-               // Secure ID
+       foreach (postRequestElement('id') as $id => $cat) {
+               // Secure id
                $id = bigintval($id);
 
                // Is the entry set?
                if (!empty($cat)) {
-                       switch (REQUEST_GET('do'))
+                       switch (getRequestElement('do'))
                        {
                                case 'edit': // Change categories
-                                       SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_cats` SET cat='%s', `visible`='%s', sort=%s WHERE `id`=%s LIMIT 1",
+                                       SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_cats` SET cat='%s', `visible`='%s', sort=%s WHERE `id`=%s LIMIT 1",
                                        array(
                                        $cat,
-                                       REQUEST_POST('vis', $id),
-                                       REQUEST_POST('sort', $id),
+                                       postRequestElement('vis', $id),
+                                       postRequestElement('sort', $id),
                                        $id
                                        ), __FILE__, __LINE__);
-                                       $TEXT = CATEGORIES_SAVED;
+                                       $TEXT = getMessage('CATEGORIES_SAVED');
                                        break;
 
                                case 'del': // Delete categories
-                                       SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_cats` WHERE `id`=%s LIMIT 1",
-                                       array($id), __FILE__, __LINE__);
-                                       SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_cats` WHERE cat_id=%s",
-                                       array($id), __FILE__, __LINE__);
-                                       $TEXT = CATEGORIES_DELETED;
+                                       SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_cats` WHERE `id`=%s LIMIT 1",
+                                               array($id), __FILE__, __LINE__);
+                                       SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE cat_id=%s",
+                                               array($id), __FILE__, __LINE__);
+                                       $TEXT = getMessage('CATEGORIES_DELETED');
                                        break;
                        }
                } else {
                        // Entry not saved
-                       $TEXT .= sprintf(CATEGORY_NOT_SAVED, $id);
+                       $TEXT .= sprintf(getMessage('CATEGORY_NOT_SAVED'), $id);
                }
        }
 
        if (isset($TEXT)) {
                // Display message
-               LOAD_TEMPLATE('admin_settings_saved', false, $TEXT);
+               loadTemplate('admin_settings_saved', false, $TEXT);
        }
-} elseif ((REQUEST_ISSET_POST('del')) && (countPostSelection() > 0)) {
+} elseif ((isPostRequestElementSet('del')) && (countPostSelection() > 0)) {
        // Delete categories
        $OUT = ''; $SW = 2;
-       foreach (REQUEST_POST('sel') as $id => $value) {
+       foreach (postRequestElement('sel') as $id => $value) {
                // Load data of category
-               $result = SQL_QUERY_ESC("SELECT cat FROM `{!_MYSQL_PREFIX!}_cats` WHERE `id`=%s LIMIT 1",
-               array(bigintval($id)), __FILE__, __LINE__);
+               $result = SQL_QUERY_ESC("SELECT `cat` FROM `{?_MYSQL_PREFIX?}_cats` WHERE `id`=%s LIMIT 1",
+                       array(bigintval($id)), __FILE__, __LINE__);
                list($cat) = SQL_FETCHROW($result);
+
+               // Free result
                SQL_FREERESULT($result);
 
                // Prepare data for the row template
@@ -126,20 +127,19 @@ if (REQUEST_ISSET_POST(('add'))) {
                );
 
                // Load row template and switch colors
-               $OUT .= LOAD_TEMPLATE("admin_del_cats_row", true, $content);
+               $OUT .= loadTemplate('admin_del_cats_row', true, $content);
                $SW = 3 - $SW;
        }
-       define('__CAT_ROWS', $OUT);
 
        // Load main template
-       LOAD_TEMPLATE("admin_del_cats");
-} elseif ((REQUEST_ISSET_POST('edit')) && (countPostSelection() > 0)) {
+       loadTemplate('admin_del_cats', false, $OUT);
+} elseif ((isPostRequestElementSet('edit')) && (countPostSelection() > 0)) {
        // Edit categories
        $OUT = ''; $SW = 2;
-       foreach (REQUEST_POST('sel') as $id => $value)
+       foreach (postRequestElement('sel') as $id => $value)
        {
                // Load data from the category
-               $result = SQL_QUERY_ESC("SELECT cat, visible, sort FROM `{!_MYSQL_PREFIX!}_cats` WHERE `id`=%s LIMIT 1",
+               $result = SQL_QUERY_ESC("SELECT cat, visible, sort FROM `{?_MYSQL_PREFIX?}_cats` WHERE `id`=%s LIMIT 1",
                array(bigintval($id)), __FILE__, __LINE__);
                list($cat, $vis, $sort) = SQL_FETCHROW($result);
                SQL_FREERESULT($result);
@@ -149,24 +149,23 @@ if (REQUEST_ISSET_POST(('add'))) {
                        'sw'   => $SW,
                        'id'   => $id,
                        'cat'  => $cat,
-                       'vis'  => ADD_SELECTION('yn', $vis, "vis", $id),
+                       'vis'  => addSelectionBox('yn', $vis, 'vis', $id),
                        'sort' => $sort,
                );
 
                // Load row template and switch colors
-               $OUT .= LOAD_TEMPLATE("admin_edit_cats_row", true, $content);
+               $OUT .= loadTemplate('admin_edit_cats_row', true, $content);
                $SW = 3 - $SW;
        }
-       define('__CAT_ROWS', $OUT);
 
        // Load main template
-       LOAD_TEMPLATE("admin_edit_cats");
+       loadTemplate('admin_edit_cats', false, $OUT);
 } else {
        // Init variable here
        $CATS = '';
 
        // Load all categories
-       $result = SQL_QUERY("SELECT id, cat, visible, sort FROM `{!_MYSQL_PREFIX!}_cats` ORDER BY `sort`", __FILE__, __LINE__);
+       $result = SQL_QUERY("SELECT `id`, `cat`, `visible`, `sort` FROM `{?_MYSQL_PREFIX?}_cats` ORDER BY `sort` ASC", __FILE__, __LINE__);
        if (SQL_NUMROWS($result) > 0) {
                // Init variables
                $OUT = ''; $SW = 2;
@@ -182,26 +181,23 @@ if (REQUEST_ISSET_POST(('add'))) {
                        $CATS .= "      <option value=\"".$content['sort']."\">".$content['cat']."</option>\n";
 
                        // Load row template and switch color
-                       $OUT .= LOAD_TEMPLATE("admin_config_cats_row", true, $content);
+                       $OUT .= loadTemplate('admin_config_cats_row', true, $content);
                        $SW = 3 - $SW;
-               }
+               } // END - while
 
                // Free memory
                SQL_FREERESULT($result);
 
-               // @TODO Rewrite this constant
-               define('__CAT_ROWS', $OUT);
-
                // Load main template
-               LOAD_TEMPLATE("admin_config_cats");
-       }
+               loadTemplate('admin_config_cats', false, $OUT);
+       } // END - if
 
-       // @TODO Rewrite this constant
-       define('CATS', $CATS);
+       // Remember in array
+       $content['cats'] = $CATS;
 
        // Form to add a new category
-       LOAD_TEMPLATE("admin_add_cat");
+       loadTemplate('admin_add_cat', false, $content);
 }
 
-//
+// [EOF]
 ?>