]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_cats.php
Extension ext-earning introduced (unfinished), renamings:
[mailer.git] / inc / modules / admin / what-config_cats.php
index afcb7f53f1eecaf9a255333b18b26370b0d4905f..afd0edfd2baf9945f9052e5c377c68a1a31331c8 100644 (file)
@@ -50,14 +50,14 @@ $CATS = '';
 if (isFormSent('add')) {
        // Add a new category
        $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_cats` WHERE `cat`='%s' LIMIT 1",
-               array(postRequestParameter('catname')), __FILE__, __LINE__);
+               array(postRequestElement('catname')), __FILE__, __LINE__);
        if (SQL_HASZERONUMS($result)) {
                // Category does not exists, we simply add it...
                SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_cats` (`cat`,`visible`,`sort`) VALUES ('%s','%s','%s')",
                        array(
-                               postRequestParameter('catname'),
-                               postRequestParameter('visible'),
-                               bigintval(postRequestParameter('parent') + 1)
+                               postRequestElement('catname'),
+                               postRequestElement('visible'),
+                               bigintval(postRequestElement('parent') + 1)
                        ), __FILE__, __LINE__);
                $content = '{--CATEGORY_ADDED--}';
        } else {
@@ -70,22 +70,22 @@ if (isFormSent('add')) {
 
        // Display message
        displayMessage($content);
-} elseif ((isFormSent()) && (isPostRequestParameterSet('id')) && (is_array(postRequestParameter('id')))) {
+} elseif ((isFormSent()) && (isPostRequestElementSet('id')) && (is_array(postRequestElement('id')))) {
        // Change or delete categories...
        $TEXT = '';
-       foreach (postRequestParameter('id') as $id => $cat) {
+       foreach (postRequestElement('id') as $id => $cat) {
                // Secure id
                $id = bigintval($id);
 
                // Is the entry set?
                if (!empty($cat)) {
-                       switch (getRequestParameter('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",
                                                array(
                                                        $cat,
-                                                       postRequestParameter('visible', $id),
-                                                       postRequestParameter('sort', $id),
+                                                       postRequestElement('visible', $id),
+                                                       postRequestElement('sort', $id),
                                                        $id
                                                ), __FILE__, __LINE__);
                                        $TEXT = '{--ADMIN_CATEGORIES_SAVED--}';
@@ -112,7 +112,7 @@ if (isFormSent('add')) {
 } elseif ((isFormSent('delete')) && (ifPostContainsSelections())) {
        // Delete categories
        $OUT = '';
-       foreach (postRequestParameter('sel') as $id => $value) {
+       foreach (postRequestElement('sel') as $id => $value) {
                // Load row template and switch colors
                $OUT .= loadTemplate('admin_delete_cats_row', true, $id);
        } // END - foreach
@@ -122,7 +122,7 @@ if (isFormSent('add')) {
 } elseif ((isFormSent('edit')) && (ifPostContainsSelections())) {
        // Edit categories
        $OUT = '';
-       foreach (postRequestParameter('sel') as $id => $value) {
+       foreach (postRequestElement('sel') as $id => $value) {
                // Load data from the category
                $result = SQL_QUERY_ESC("SELECT `id`,`visible`,`sort` FROM `{?_MYSQL_PREFIX?}_cats` WHERE `id`=%s LIMIT 1",
                        array(bigintval($id)), __FILE__, __LINE__);