1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00
MikeyGMT b9bce0a12b Enable Help in Banner Plugin
Enable Help in Banner admin area.
Make the default description for e107 Banner more accessibility
friendly. #275
2016-12-05 19:28:26 +00:00

22 lines
441 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
*
*/
if (!defined('e107_INIT')) { exit; }
if (!e107::isInstalled('banner'))
{
return;
}
include_lan(e_PLUGIN.'banner/languages/'.e_LANGUAGE.'admin_banner.php');
$ns->tablerender(BNRLAN_HELP_01, BNRLAN_HELP_02);
?>