X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-unlock_surfbar_urls.php;h=bd6542d0b46c2ab7ba53c1a33924feae8ad05617;hb=8ce32e702f3caa76b8d446902948e83e1e6854c8;hp=d5ef600a3335dc5c042a87c9dde11e25588bce6c;hpb=09f5758c42a33a56bdd461c946ffe759a59c54aa;p=mailer.git diff --git a/inc/modules/admin/what-unlock_surfbar_urls.php b/inc/modules/admin/what-unlock_surfbar_urls.php index d5ef600a33..bd6542d0b4 100644 --- a/inc/modules/admin/what-unlock_surfbar_urls.php +++ b/inc/modules/admin/what-unlock_surfbar_urls.php @@ -14,12 +14,10 @@ * $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 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -43,66 +41,31 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // Is the form sent? -if ((isPostRequestParameterSet('unlock')) && (is_array(postRequestParameter('id'))) && (count(postRequestParameter('id')) > 0)) { +if ((isPostRequestElementSet('unlock')) && (is_array(postRequestElement('url_id'))) && (count(postRequestElement('url_id')) > 0)) { // Unlock selected URLs - if (SURFBAR_ADMIN_UNLOCK_URL_IDS(postRequestParameter('id'))) { + if (SURFBAR_ADMIN_UNLOCK_URL_IDS(postRequestElement('url_id'))) { // Unlock done! :-) - loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_DONE')); + displayMessage('{--ADMIN_SURFBAR_UNLOCK_DONE--}'); } else { // Unlock failed! - loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_FAILED')); + displayMessage('{--ADMIN_SURFBAR_UNLOCK_FAILED--}'); } -} elseif ((isPostRequestParameterSet(('reject'))) && (is_array(postRequestParameter('id'))) && (count(postRequestParameter('id')) > 0)) { +} elseif ((isPostRequestElementSet('reject')) && (is_array(postRequestElement('url_id'))) && (count(postRequestElement('url_id')) > 0)) { // Reject selected URLs - if (SURFBAR_ADMIN_REJECT_URL_IDS(postRequestParameter('id'))) { + if (SURFBAR_ADMIN_REJECT_URL_IDS(postRequestElement('url_id'))) { // Unlock done! :-) - loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_DONE')); + displayMessage('{--ADMIN_SURFBAR_UNLOCK_DONE--}'); } else { // Unlock failed! - loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_UNLOCK_FAILED')); + displayMessage('{--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); +// List all pendingURLs +showEntriesByXmlCallback('admin_unlock_surfbar_urls'); // [EOF] ?>