]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_surfbar_actions.php
Updated copyright year.
[mailer.git] / inc / modules / admin / what-list_surfbar_actions.php
index 33cfca450945cffbc85700d41f93df943613f2c0..3633eb9d98a89a855293db4214c723224f99c5b1 100644 (file)
@@ -8,7 +8,7 @@
  * -------------------------------------------------------------------- *
  * Short description : List surfbar member actions                      *
  * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Auflistung von Mitgliederaktionen der Surfbar    *
+ * Kurzbeschreibung  : Auflistung von Mitglieder-Aktionen der Surfbar   *
  * -------------------------------------------------------------------- *
  * $Revision::                                                        $ *
  * $Date::                                                            $ *
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2016 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 *
@@ -44,28 +44,28 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // By default show the list...
-$show = true;
+$show = TRUE;
 
 // Edit or delete button hit?
 if (isFormSent('edit')) {
        // Show entries for editing
-       showEntriesByXmlCallback('admin_edit_show_surfbar_actions');
+       doGenericXmlTemplateCallback('admin_edit_show_surfbar_actions');
 
        // Do not show the list of URLs after this template
-       $show = false;
+       $show = FALSE;
 } elseif (isFormSent('do_edit')) {
        // Change data of entries
-       showEntriesByXmlCallback('admin_edit_do_surfbar_actions');
+       doGenericXmlTemplateCallback('admin_edit_do_surfbar_actions');
 }
 
 // Show entries?
-if ($show === false) {
+if ($show === FALSE) {
        // No, a form has already been show
-       return false;
+       return FALSE;
 } // END - if
 
 // List all URLs
-showEntriesByXmlCallback('admin_list_surfbar_actions');
+doGenericXmlTemplateCallback('admin_list_surfbar_actions');
 
 // [EOF]
 ?>