]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-unlock_surfbar_urls.php
Some functions rewritten to hungarian notation, handling of array rewritten
[mailer.git] / inc / modules / admin / what-unlock_surfbar_urls.php
index 707d238077c1cbf3bfc88be8892494e36c013e80..e6ea703afce88cc908e5693ff0c8ea421555a3a3 100644 (file)
  ************************************************************************/
 
 // Some security stuff...
-if ((!defined('__SECURITY')) || (!is_admin())) {
+if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 } // END - if
 
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+ADD_DESCR("admin", __FILE__);
 
 // Is the form sent?
 if ((isset($_POST['unlock'])) && (is_array($_POST['id'])) && (count($_POST['id']) > 0)) {
@@ -50,10 +50,19 @@ if ((isset($_POST['unlock'])) && (is_array($_POST['id'])) && (count($_POST['id']
                // Unlock failed!
                LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_UNLOCK_FAILED);
        }
-} // END - if
+} elseif ((isset($_POST['reject'])) && (is_array($_POST['id'])) && (count($_POST['id']) > 0)) {
+       // Reject selected URLs
+       if (SURFBAR_ADMIN_REJECT_URL_IDS($_POST['id'])) {
+               // Unlock done! :-)
+               LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_UNLOCK_DONE);
+       } else {
+               // Unlock failed!
+               LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_UNLOCK_FAILED);
+       }
+}
 
 // List all URLs
-$result = SQL_QUERY("SELECT id, userid, url, reward, costs, UNIX_TIMESTAMP(registered) AS registered
+$result = SQL_QUERY("SELECT id, userid, url, UNIX_TIMESTAMP(registered) AS registered
 FROM "._MYSQL_PREFIX."_surfbar_urls
 WHERE status='PENDING'
 ORDER BY id ASC", __FILE__, __LINE__);
@@ -64,12 +73,10 @@ if (SQL_NUMROWS($result) > 0) {
        $OUT = ""; $SW = 2;
        while ($content = SQL_FETCHARRAY($result)) {
                // "Translate"/add content
-               $content['sw']         = $SW;
-               $content['userid']     = ADMIN_USER_PROFILE_LINK($content['userid']);
-               $content['url']        = FRAMETESTER($content['url']);
-               $content['costs']      = TRANSLATE_COMMA($content['costs']);
-               $content['reward']     = TRANSLATE_COMMA($content['reward']);
-               $content['registered'] = MAKE_DATETIME($content['registered'], 2);
+               $content['sw']          = $SW;
+               $content['userid']      = ADMIN_USER_PROFILE_LINK($content['userid']);
+               $content['framekiller'] = FRAMETESTER($content['url']);
+               $content['registered']  = MAKE_DATETIME($content['registered'], 2);
 
                // Load row template
                $OUT .= LOAD_TEMPLATE("admin_unlock_surfbar_urls_row", true, $content);