]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-add_surfbar_url.php
Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / admin / what-add_surfbar_url.php
index fc01349131fce834c4e8e119a795f4208fef8db5..583cbbf0e158e5af317f5246def6c56c39b5c17e 100644 (file)
  * $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                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2013 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 *
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!isAdmin())) {
        die();
-}
+} // END - if
 
 // Add description as navigation point
-addMenuDescription('admin', __FILE__);
+addYouAreHereLink('admin', __FILE__);
 
 // Was an URL added?
-if ((isPostRequestElementSet('add')) && (isPostRequestElementSet('url'))) {
-       // Initialize variables
-       $DATA = array();
-       $id = 'reload_ye';
-       $skip = false;
-       $postData = postRequestArray();
-
-       // Convert the "reload selections"
-       // @TODO Find all convertSelectionsToTimestamp() calls and rewrite postRequestElement() calls to $postData
-       convertSelectionsToTimestamp($postData, $DATA, $id, $skip);
+if ((isFormSent('add')) && (isPostRequestElementSet('url'))) {
+       // Convert the "reload/waiting selections"
+       convertSelectionsToEpocheTimeInPostData('reload_ye');
+       convertSelectionsToEpocheTimeInPostData('waiting_ye');
 
        // Then add this URL
-       if (SURFBAR_ADMIN_ADD_URL($postData['url'], $postData['limit'], $postData['reload'])) {
+       if (doSurfbarAdminAddUrl(postRequestElement('url'), postRequestElement('limit'), postRequestElement('reload'), postRequestElement('waiting'))) {
                // URL was added
-               loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_URL_ADDED'));
+               displayMessage('{--ADMIN_SURFBAR_URL_ADDED--}');
        } else {
                // Not added
-               loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_URL_NOT_ADDED'));
+               displayMessage('{--ADMIN_SURFBAR_URL_NOT_ADDED--}');
        }
 } // END - if
 
 // Prepare content for template
 $content = array(
-       'reload' => createTimeSelections(0, 'reload', 'WDhms')
+       'reload'  => createTimeSelections(0, 'reload' , 'WDhms'),
+       'waiting' => createTimeSelections(0, 'waiting', 'ms')
 );
 
 // Load template
-loadTemplate('admin_add_surfbar_url', false, $content);
+loadTemplate('admin_add_surfbar_url', FALSE, $content);
 
 //
 ?>