mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 04:38:27 +01:00
26 lines
540 B
PHP
26 lines
540 B
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2016 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
* Plugin - Banner
|
|
*
|
|
*/
|
|
// DEPRECATED FILE - help text now included renderHelp() in banner_config.php
|
|
return;
|
|
|
|
/*
|
|
if (!defined('e107_INIT')) { exit; }
|
|
if (!e107::isInstalled('banner'))
|
|
{
|
|
return;
|
|
}
|
|
|
|
e107::includeLan(e_PLUGIN.'banner/languages/'.e_LANGUAGE.'admin_banner.php');
|
|
$ns->tablerender(BNRLAN_HELP_01, BNRLAN_HELP_02);
|
|
|
|
?>
|
|
*/ |