fc01349131fce834c4e8e119a795f4208fef8db5
[mailer.git] / inc / modules / admin / what-add_surfbar_url.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 09/09/2008 *
4  * ===================                          Last change: 09/09/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-add_surfbar_url.php                         *
8  * -------------------------------------------------------------------- *
9  * Short description : Admin may add own URLs to the surfbar            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Admin kann eigene URLs der Surfbar hinzufuegen   *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
41         die();
42 }
43
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
46
47 // Was an URL added?
48 if ((isPostRequestElementSet('add')) && (isPostRequestElementSet('url'))) {
49         // Initialize variables
50         $DATA = array();
51         $id = 'reload_ye';
52         $skip = false;
53         $postData = postRequestArray();
54
55         // Convert the "reload selections"
56         // @TODO Find all convertSelectionsToTimestamp() calls and rewrite postRequestElement() calls to $postData
57         convertSelectionsToTimestamp($postData, $DATA, $id, $skip);
58
59         // Then add this URL
60         if (SURFBAR_ADMIN_ADD_URL($postData['url'], $postData['limit'], $postData['reload'])) {
61                 // URL was added
62                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_URL_ADDED'));
63         } else {
64                 // Not added
65                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_URL_NOT_ADDED'));
66         }
67 } // END - if
68
69 // Prepare content for template
70 $content = array(
71         'reload' => createTimeSelections(0, 'reload', 'WDhms')
72 );
73
74 // Load template
75 loadTemplate('admin_add_surfbar_url', false, $content);
76
77 //
78 ?>