X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_surfbar_actions.php;h=8ba7890dd83a744a21e5bd3304d1ad39b7ddacf0;hp=c3fb242a1fb63a9e3131d1cdd4e2540c187959ab;hb=9afd6ec5878544a7982c50ed9c0dd7de37606d5b;hpb=7e977ea8d28b05219b02727fcca35150d9c8fcbe diff --git a/inc/modules/admin/what-list_surfbar_actions.php b/inc/modules/admin/what-list_surfbar_actions.php index c3fb242a1f..8ba7890dd8 100644 --- a/inc/modules/admin/what-list_surfbar_actions.php +++ b/inc/modules/admin/what-list_surfbar_actions.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Auflistung von Mitgliederaktionen der Surfbar * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $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 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -32,21 +37,26 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!is_admin())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); } // Add description as navigation point -ADD_DESCR("admin", __FILE__); +addMenuDescription('admin', __FILE__); // Load all actions -$result = SQL_QUERY("SELECT id, status, action, new_status FROM "._MYSQL_PREFIX."_surfbar_actions ORDER BY id ASC", __FILE__, __LINE__); +$result = SQL_QUERY("SELECT + `id`, `status`, `action`, `new_status` +FROM + `{?_MYSQL_PREFIX?}_surfbar_actions` +ORDER BY + `status` ASC, + `action` ASC", __FILE__, __LINE__); // Entries found? if (SQL_NUMROWS($result) > 0) { // List all entries - $OUT = ""; $SW = 2; + $OUT = ''; $SW = 2; while ($content = SQL_FETCHARRAY($result)) { // "Translate" some data $content['status'] = constant(sprintf("SURFBAR_URL_STATUS_%s", $content['status'])); @@ -65,21 +75,21 @@ if (SQL_NUMROWS($result) > 0) { $content['sw'] = $SW; // Load row template - $OUT .= LOAD_TEMPLATE("admin_list_surfbar_actions_row", true, $content); + $OUT .= loadTemplate('admin_list_surfbar_actions_row', true, $content); // Switch color $SW = 3 - $SW; } // END - while // Load main template - LOAD_TEMPLATE("admin_list_surfbar_actions", false, $OUT); + loadTemplate('admin_list_surfbar_actions', false, $OUT); } else { // No entries found, very bad! - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_NO_ACTIONS); + loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_NO_ACTIONS')); } // Free result SQL_FREERESULT($result); -// +// [EOF] ?>