2016-12-05 19:28:26 +00:00
|
|
|
<?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
|
|
|
|
*
|
|
|
|
*/
|
2019-10-26 15:59:05 +02:00
|
|
|
// DEPRECATED FILE - help text now included renderHelp() in banner_config.php
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
2016-12-05 19:28:26 +00:00
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
if (!e107::isInstalled('banner'))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-23 09:41:23 -08:00
|
|
|
e107::includeLan(e_PLUGIN.'banner/languages/'.e_LANGUAGE.'admin_banner.php');
|
2016-12-05 19:28:26 +00:00
|
|
|
$ns->tablerender(BNRLAN_HELP_01, BNRLAN_HELP_02);
|
|
|
|
|
|
|
|
?>
|
2019-10-26 15:59:05 +02:00
|
|
|
*/
|