]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-unlock_surfbar_urls.php
Extension ext-earning introduced (unfinished), renamings:
[mailer.git] / inc / modules / admin / what-unlock_surfbar_urls.php
index c1d2d52c98fd0935bf1a747cc36bb450f846445e..374f564af2edc745932114fd3215b630fdd0b342 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/08/2008 *
- * ================                             Last change: 09/08/2008 *
+ * Mailer v0.2.1-FINAL                                Start: 09/08/2008 *
+ * ===================                          Last change: 09/08/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-unlock_surfbar_urls.php                     *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Wartende URLs in der Surfbar freigeben           *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
  * 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__));
+addYouAreHereLink('admin', __FILE__);
+
+// Is the form sent?
+if ((isPostRequestElementSet('unlock')) && (is_array(postRequestElement('url_id'))) && (count(postRequestElement('url_id')) > 0)) {
+       // Unlock selected URLs
+       if (SURFBAR_ADMIN_UNLOCK_URL_IDS(postRequestElement('url_id'))) {
+               // Unlock done! :-)
+               displayMessage('{--ADMIN_SURFBAR_UNLOCK_DONE--}');
+       } else {
+               // Unlock failed!
+               displayMessage('{--ADMIN_SURFBAR_UNLOCK_FAILED--}');
+       }
+} elseif ((isPostRequestElementSet('reject')) && (is_array(postRequestElement('url_id'))) && (count(postRequestElement('url_id')) > 0)) {
+       // Reject selected URLs
+       if (SURFBAR_ADMIN_REJECT_URL_IDS(postRequestElement('url_id'))) {
+               // Unlock done! :-)
+               displayMessage('{--ADMIN_SURFBAR_UNLOCK_DONE--}');
+       } else {
+               // Unlock failed!
+               displayMessage('{--ADMIN_SURFBAR_UNLOCK_FAILED--}');
+       }
+}
+
+// List all pendingURLs
+showEntriesByXmlCallback('admin_unlock_surfbar_urls');
 
-//
+// [EOF]
 ?>