]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-unlock_surfbar_urls.php
is missing
[mailer.git] / inc / modules / admin / what-unlock_surfbar_urls.php
index c1d2d52c98fd0935bf1a747cc36bb450f846445e..104e443f0fdbfa0404a5db7385c61ed2df668781 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Wartende URLs in der Surfbar freigeben           *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * 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 ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!is_admin())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+addMenuDescription('admin', __FILE__);
+
+// Is the form sent?
+if ((isPostRequestElementSet(('unlock'))) && (is_array(postRequestElement('id'))) && (count(postRequestElement('id')) > 0)) {
+       // Unlock selected URLs
+       if (SURFBAR_ADMIN_UNLOCK_URL_IDS(postRequestElement('id'))) {
+               // Unlock done! :-)
+               loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_DONE'));
+       } else {
+               // Unlock failed!
+               loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_FAILED'));
+       }
+} elseif ((isPostRequestElementSet(('reject'))) && (is_array(postRequestElement('id'))) && (count(postRequestElement('id')) > 0)) {
+       // Reject selected URLs
+       if (SURFBAR_ADMIN_REJECT_URL_IDS(postRequestElement('id'))) {
+               // Unlock done! :-)
+               loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_DONE'));
+       } else {
+               // Unlock failed!
+               loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_FAILED'));
+       }
+}
+
+// List all URLs
+$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__);
+
+// Do we have some URLs left?
+if (SQL_NUMROWS($result) > 0) {
+       // List all URLs
+       $OUT = ''; $SW = 2;
+       while ($content = SQL_FETCHARRAY($result)) {
+               // "Translate"/add content
+               $content['sw']          = $SW;
+               $content['userid']      = generateUserProfileLink($content['userid']);
+               $content['framekiller'] = generateFrametesterUrl($content['url']);
+               $content['registered']  = generateDateTime($content['registered'], 2);
+
+               // Load row template
+               $OUT .= loadTemplate('admin_unlock_surfbar_urls_row', true, $content);
+
+               // Switch color
+               $SW = 3 - $SW;
+       } // END - while
+
+       // Load main template
+       loadTemplate('admin_unlock_surfbar_urls', false, $OUT);
+} else {
+       // No URLs in surfbar
+       loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_NO_URLS_FOUND'));
+}
+
+// Free result
+SQL_FREERESULT($result);
 
-//
+// [EOF]
 ?>