1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-09 16:17:14 +02:00

Moved �configuer�

This commit is contained in:
marj
2009-07-18 18:23:44 +00:00
parent 6657118a6b
commit 8b639f8aca

View File

@@ -1,24 +1,21 @@
<?php <?php
/* /*
+ ----------------------------------------------------------------------------+ * e107 website system
| e107 website system *
| * Copyright (C) 2001-2008 e107 Inc (e107.org)
| Steve Dunstan 2001-2002 * Released under the terms and conditions of the
| http://e107.org * GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
| jalist@e107.org *
| * Login menu template
| Released under the terms and conditions of the *
| GNU General Public License (http://gnu.org). * $Source: /cvs_backup/e107_0.8/e107_plugins/login_menu/login_menu_template.php,v $
| * $Revision: 1.8 $
| $Source: /cvs_backup/e107_0.8/e107_plugins/login_menu/login_menu_template.php,v $ * $Date: 2009-07-18 18:23:44 $
| $Revision: 1.7 $ * $Author: marj_nl_fr $
| $Date: 2009-03-06 20:09:08 $ */
| $Author: e107coders $
+----------------------------------------------------------------------------+
*/
if ( ! isset($LOGIN_MENU_FORM))
if (!isset($LOGIN_MENU_FORM)){ {
/* /*
NEW SHORTCODES/PARAMETERS: NEW SHORTCODES/PARAMETERS:
@@ -87,11 +84,13 @@ if (!isset($LOGIN_MENU_FORM)){
} }
if (!isset($LOGIN_MENU_MESSAGE)){ if ( ! isset($LOGIN_MENU_MESSAGE))
{
$LOGIN_MENU_MESSAGE = '<div class="login-menu-message">{LM_MESSAGE_TEXT}</div>'; $LOGIN_MENU_MESSAGE = '<div class="login-menu-message">{LM_MESSAGE_TEXT}</div>';
} }
if (!isset($LOGIN_MENU_LOGGED)){ if ( ! isset($LOGIN_MENU_LOGGED))
{
/* /*
NEW SHORTCODES and/or PARAMETERS: NEW SHORTCODES and/or PARAMETERS:
@@ -145,10 +144,10 @@ if (!isset($LOGIN_MENU_LOGGED)){
$LOGIN_MENU_LOGGED = ' $LOGIN_MENU_LOGGED = '
{LM_MAINTENANCE} {LM_MAINTENANCE}
{LM_ADMINLINK_BULLET} {LM_ADMIN_CONFIGURE}
{LM_ADMINLINK_BULLET} {LM_ADMINLINK} {LM_ADMINLINK_BULLET} {LM_ADMINLINK}
{LM_BULLET} {LM_USERSETTINGS}<br /> {LM_BULLET} {LM_USERSETTINGS}<br />
{LM_BULLET} {LM_PROFILE}<br /> {LM_BULLET} {LM_PROFILE}<br />
{LM_ADMINLINK_BULLET} {LM_ADMIN_CONFIGURE}
{LM_EXTERNAL_LINKS} {LM_EXTERNAL_LINKS}
{LM_BULLET} {LM_LOGOUT} {LM_BULLET} {LM_LOGOUT}
{LM_STATS} {LM_STATS}
@@ -156,13 +155,15 @@ if (!isset($LOGIN_MENU_LOGGED)){
'; ';
} }
if (!isset($LOGIN_MENU_EXTERNAL_LINK)){ if ( ! isset($LOGIN_MENU_EXTERNAL_LINK))
{
$LOGIN_MENU_EXTERNAL_LINK = ' $LOGIN_MENU_EXTERNAL_LINK = '
{LM_BULLET} {LM_EXTERNAL_LINK}<br /> {LM_BULLET} {LM_EXTERNAL_LINK}<br />
'; ';
} }
if (!isset($LOGIN_MENU_STATS)){ if ( ! isset($LOGIN_MENU_STATS))
{
$sc_style['LM_NEW_NEWS']['pre'] = ''; $sc_style['LM_NEW_NEWS']['pre'] = '';
$sc_style['LM_NEW_NEWS']['post'] = '<br />'; $sc_style['LM_NEW_NEWS']['post'] = '<br />';
@@ -187,11 +188,10 @@ if (!isset($LOGIN_MENU_STATS)){
} }
$LM_STATITEM_SEPARATOR = '<br />'; $LM_STATITEM_SEPARATOR = '<br />';
if (!isset($LOGIN_MENU_STATITEM)){ if (!isset($LOGIN_MENU_STATITEM))
{
$LOGIN_MENU_STATITEM = ' $LOGIN_MENU_STATITEM = '
{LM_STAT_NEW} {LM_STAT_LABEL}{LM_STAT_EMPTY} {LM_STAT_NEW} {LM_STAT_LABEL}{LM_STAT_EMPTY}
'; ';
} }
?>