mirror of
https://github.com/e107inc/e107.git
synced 2025-02-13 11:04:38 +01:00
33 lines
1010 B
PHP
33 lines
1010 B
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2001-2009 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
*
|
|
*
|
|
* $Source: /cvs_backup/e107_0.8/e107_plugins/alt_auth/e_help.php,v $
|
|
* $Revision: 1.3 $
|
|
* $Date: 2009-11-17 11:28:41 $
|
|
* $Author: marj_nl_fr $
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
define('ALT_AUTH_PATH', e_PLUGIN.'alt_auth/');
|
|
|
|
if (e_PAGE == 'alt_auth_conf.php')
|
|
{
|
|
include_lan(ALT_AUTH_PATH.'languages/'.e_LANGUAGE.'/admin_alt_auth.php');
|
|
$ns -> tablerender('help',LAN_ALT_AUTH_HELP);
|
|
}
|
|
else
|
|
{
|
|
include_lan(ALT_AUTH_PATH.'languages/'.e_LANGUAGE.'/admin_'.e_PAGE);
|
|
if (!defined('LAN_ALT_VALIDATE_HELP')) include_lan(ALT_AUTH_PATH.'languages/'.e_LANGUAGE.'/admin_alt_auth.php');
|
|
$ns -> tablerender('help',LAN_AUTHENTICATE_HELP.'<br /><br />'.(defined('SHOW_COPY_HELP') ? LAN_ALT_COPY_HELP : '').(defined('SHOW_CONVERSION_HELP') ? LAN_ALT_CONVERSION_HELP : '').LAN_ALT_VALIDATE_HELP);
|
|
}
|
|
|
|
?>
|