A lot has been rewritten, ext-teams added, ext-forced continued:
[mailer.git] / inc / modules / admin / what-list_forced_ads.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 07/23/2011 *
4  * ===================                          Last change: 07/23/2011 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_forced_ads.php                         *
8  * -------------------------------------------------------------------- *
9  * Short description : List/add Forced-Ads                              *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Auflisten/Hinzufuegen von Forced-Werbemitteln    *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 // By default show the list...
47 $show = true;
48
49 // Check for 'url_id' element
50 if ((countRequestPost() > 0) && ((!isPostRequestParameterSet('forced_ads_id')) || (!is_array(postRequestParameter('forced_ads_id'))) || (count(postRequestParameter('forced_ads_id')) == 0))) {
51         // Not found so output message
52         displayMessage('{--ADMIN_FORCED_ADS_NO_SELECTIONS--}');
53
54         // Abort here
55         return;
56 } // END - if
57
58 // Edit or delete button hit?
59 if (isFormSent('add')) {
60         // Add new forced ad
61         showEntriesByXmlCallback('admin_add_do_forced_ads');
62 } elseif (isFormSent('edit')) {
63         // Show entries for editing
64         showEntriesByXmlCallback('admin_edit_show_forced_ads');
65
66         // Do not show the list of URLs after this template
67         $show = false;
68 } elseif (isFormSent('do_edit')) {
69         // Change data of entries
70         showEntriesByXmlCallback('admin_edit_do_forced_ads');
71 } elseif (isFormSent('delete')) {
72         // Show entries for deletion
73         showEntriesByXmlCallback('admin_delete_show_forced_ads');
74
75         // Do not show the list of URLs after this template
76         $show = false;
77 } elseif (isFormSent('do_delete')) {
78         // Remove entries from database
79         showEntriesByXmlCallback('admin_delete_do_forced_ads');
80 }
81
82 // Show entries?
83 if ($show === false) {
84         // No, a form has already been show
85         return false;
86 } // END - if
87
88 // List all URLs
89 showEntriesByXmlCallback('admin_list_forced_ads');
90
91 // Prepare content for template
92 $content = array(
93         'reload_lock' => createTimeSelections(0, 'forced_ads_reload_lock', 'WDhm'),
94         'min_stay'    => createTImeSelections(0, 'forced_ads_min_stay'   , 'ms')
95 );
96
97 // Display form for adding a forced-ad
98 loadTemplate('admin_add_forced_ad', false, $content);
99
100 // [EOF]
101 ?>