]> git.mxchange.org Git - mailer.git/blob - inc/modules/admin/what-list_surfbar_packages.php
Added new (missing) template for admin area + continued a bit with ext-surfbar
[mailer.git] / inc / modules / admin / what-list_surfbar_packages.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/11/2012 *
4  * ===================                          Last change: 11/11/2012 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_surfbar_packages.php                   *
8  * -------------------------------------------------------------------- *
9  * Short description : List all URLs in surfbar_packages                *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle URLs in surfbar_packages auflisten          *
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 - 2015 by Mailer Developer Team                   *
20  * For more information visit: http://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 'package_id' element
50 if (isFormSent('add')) {
51         // Add new entry
52         die('Unfinished!');
53 } elseif ((countRequestPost() > 0) && (!ifPostContainsSelections('package_id'))) {
54         // Not found so output message
55         displayMessage('{--ADMIN_SURFBAR_PACKAGES_NO_SELECTIONS--}');
56
57         // Abort here
58         return;
59 } // END - if
60
61 // Edit or delete button hit?
62 if (isFormSent('edit')) {
63         // Show entries for editing
64         doGenericXmlTemplateCallback('admin_edit_show_surfbar_packages');
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         doGenericXmlTemplateCallback('admin_edit_do_surfbar_packages');
71 } elseif (isFormSent('delete')) {
72         // Show entries for deletion
73         doGenericXmlTemplateCallback('admin_delete_show_surfbar_packages');
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         doGenericXmlTemplateCallback('admin_delete_do_surfbar_packages');
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 surfbar_packages
89 doGenericXmlTemplateCallback('admin_list_surfbar_packages');
90
91 // Load 'add' template
92 loadTemplate('admin_add_surfbar_package', FALSE, array(
93         'surfbar_package_reload'  => createTimeSelections(60, 'surfbar_package_reload', 'Dhms', 'center', FALSE, TRUE),
94         'surfbar_package_waiting' => createTimeSelections(10, 'surfbar_package_reload', 'ms'  , 'center', FALSE, TRUE),
95 ));
96
97 // [EOF]
98 ?>