]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_mods.php
Huge script change, see http://forum.mxchange.org/topic-458.html for details:
[mailer.git] / inc / modules / admin / what-config_mods.php
index 2ff24a213a00bfb371b30c489f63fafcf31d1654..8d6c362fecadc053cdb29a21cfdb5040a8b4349d 100644 (file)
@@ -17,7 +17,7 @@
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * 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 *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
  ************************************************************************/
 
 // 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 description as navigation point
-ADD_DESCR('admin', __FILE__);
+addMenuDescription('admin', __FILE__);
 
 $SEL = 0;
 
 $SEL = 0;
-if (REQUEST_ISSET_POST('edit')) {
+if (isPostRequestElementSet('edit')) {
        // Check if at least one module is selected
        $SEL = countPostSelection();
        if ($SEL > 0) {
        // Check if at least one module is selected
        $SEL = countPostSelection();
        if ($SEL > 0) {
@@ -54,9 +53,9 @@ if (REQUEST_ISSET_POST('edit')) {
                $OUT = ''; $SW = 2;
 
                // Edit selected modules
                $OUT = ''; $SW = 2;
 
                // Edit selected modules
-               foreach (REQUEST_POST('sel') as $id => $sel) {
+               foreach (postRequestElement('sel') as $id => $sel) {
                        // Load module data
                        // Load module data
-                       $result = SQL_QUERY_ESC("SELECT module, title, locked, hidden, admin_only, mem_only FROM `{!_MYSQL_PREFIX!}_mod_reg` WHERE `id`=%s LIMIT 1",
+                       $result = SQL_QUERY_ESC("SELECT module, title, locked, hidden, admin_only, mem_only FROM `{?_MYSQL_PREFIX?}_mod_reg` WHERE `id`=%s LIMIT 1",
                        array(bigintval($id)), __FILE__, __LINE__);
                        list($mod, $title, $locked, $hidden, $admin, $mem) = SQL_FETCHROW($result);
                        SQL_FREERESULT($result);
                        array(bigintval($id)), __FILE__, __LINE__);
                        list($mod, $title, $locked, $hidden, $admin, $mem) = SQL_FETCHROW($result);
                        SQL_FREERESULT($result);
@@ -67,64 +66,63 @@ if (REQUEST_ISSET_POST('edit')) {
                                'mod'    => $mod,
                                'id'     => $id,
                                'title'  => $title,
                                'mod'    => $mod,
                                'id'     => $id,
                                'title'  => $title,
-                               'locked' => ADD_SELECTION('yn', $locked, 'locked', $id),
-                               'hidden' => ADD_SELECTION('yn', $hidden, 'hidden', $id),
-                               'admin'  => ADD_SELECTION('yn', $admin , 'admin' , $id),
-                               'mem'    => ADD_SELECTION('yn', $mem   , 'member', $id),
+                               'locked' => addSelectionBox('yn', $locked, 'locked', $id),
+                               'hidden' => addSelectionBox('yn', $hidden, 'hidden', $id),
+                               'admin'  => addSelectionBox('yn', $admin , 'admin' , $id),
+                               'mem'    => addSelectionBox('yn', $mem   , 'member', $id),
                        );
 
                        // Load row template
                        );
 
                        // Load row template
-                       $OUT .= LOAD_TEMPLATE('admin_mods_edit_row', true, $content);
+                       $OUT .= loadTemplate('admin_mods_edit_row', true, $content);
                }
                }
-               define('__MODS_ROWS', $OUT);
 
                // Load main template
 
                // Load main template
-               LOAD_TEMPLATE('admin_mods_edit');
+               loadTemplate('admin_mods_edit', false, $OUT);
        } else {
                // Nothing selected
        } else {
                // Nothing selected
-               LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MODS_NOTHING_SELECTED'));
+               loadTemplate('admin_settings_saved', false, getMessage('MODS_NOTHING_SELECTED'));
 
                // Remove maybe confusing data
 
                // Remove maybe confusing data
-               REQUEST_UNSET_POST('edit');
-               REQUEST_UNSET_POST('change');
+               unsetPostRequestElement('edit');
+               unsetPostRequestElement('change');
        }
        }
-} elseif (REQUEST_ISSET_POST('change')) {
+} elseif (isPostRequestElementSet('change')) {
        // Init SQLs
        // Init SQLs
-       INIT_SQLS();
+       initSqls();
 
        // Change modules
 
        // Change modules
-       foreach (REQUEST_POST('sel') as $id => $sel) {
+       foreach (postRequestElement('sel') as $id => $sel) {
                // Secure ID number
                $id = bigintval($id);
 
                // Update module
                // Secure ID number
                $id = bigintval($id);
 
                // Update module
-               ADD_SQL(SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_mod_reg` SET `title`='%s', `locked`='%s', `hidden`='%s', `admin_only`='%s', `mem_only`='%s' WHERE `id`=%s LIMIT 1",
-               array(
-               REQUEST_POST('title', $id),
-               REQUEST_POST('locked', $id),
-               REQUEST_POST('hidden', $id),
-               REQUEST_POST('admin', $id),
-               REQUEST_POST('member', $id),
-               $id
-               ),  __FILE__, __LINE__, false));
+               addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_mod_reg` SET `title`='%s', `locked`='%s', `hidden`='%s', `admin_only`='%s', `mem_only`='%s' WHERE `id`=%s LIMIT 1",
+                       array(
+                               postRequestElement('title', $id),
+                               postRequestElement('locked', $id),
+                               postRequestElement('hidden', $id),
+                               postRequestElement('admin', $id),
+                               postRequestElement('member', $id),
+                               $id
+                       ),  __FILE__, __LINE__, false));
        }
 
        // Run all sqls
        runFilterChain('run_sqls');
 
        // Remove cache file if version matches
        }
 
        // Run all sqls
        runFilterChain('run_sqls');
 
        // Remove cache file if version matches
-       if (GET_EXT_VERSION('cache') >= '0.1.2') {
-               if ($GLOBALS['cache_instance']->loadCacheFile('modreg')) $GLOBALS['cache_instance']->destroyCacheFile();
+       if (getExtensionVersion('cache') >= '0.1.2') {
+               if ($GLOBALS['cache_instance']->loadCacheFile('modules')) $GLOBALS['cache_instance']->removeCacheFile();
        } // END - if
 
        // Entries updated
        } // END - if
 
        // Entries updated
-       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MODS_CHANGED'));
+       loadTemplate('admin_settings_saved', false, getMessage('MODS_CHANGED'));
 }
 
 if ($SEL == 0) {
        // Load module data (We do not need to check if there's at least one...)
        $result = SQL_QUERY('SELECT id, module, locked, hidden, admin_only, title, mem_only
 }
 
 if ($SEL == 0) {
        // Load module data (We do not need to check if there's at least one...)
        $result = SQL_QUERY('SELECT id, module, locked, hidden, admin_only, title, mem_only
-FROM `{!_MYSQL_PREFIX!}_mod_reg`
+FROM `{?_MYSQL_PREFIX?}_mod_reg`
 ORDER BY module', __FILE__, __LINE__);
        $OUT = ''; $SW = 2;
        while ($content = SQL_FETCHARRAY($result)) {
 ORDER BY module', __FILE__, __LINE__);
        $OUT = ''; $SW = 2;
        while ($content = SQL_FETCHARRAY($result)) {
@@ -149,7 +147,7 @@ ORDER BY module', __FILE__, __LINE__);
                );
 
                // Load row template
                );
 
                // Load row template
-               $OUT .= LOAD_TEMPLATE('admin_mods_list_row', true, $content);
+               $OUT .= loadTemplate('admin_list_mods_row', true, $content);
 
                // Switch colors
                $SW = 3 - $SW;
 
                // Switch colors
                $SW = 3 - $SW;
@@ -158,12 +156,9 @@ ORDER BY module', __FILE__, __LINE__);
        // Free memory
        SQL_FREERESULT($result);
 
        // Free memory
        SQL_FREERESULT($result);
 
-       // @TODO Rewrite this constant
-       define('__MODS_ROWS', $OUT);
-
        // Load main template
        // Load main template
-       LOAD_TEMPLATE('admin_mods_list');
+       loadTemplate('admin_list_mods', false, $OUT);
 }
 
 }
 
-//
+// [EOF]
 ?>
 ?>