2008-12-20 10:39:29 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* e107 website system
|
|
|
|
*
|
2009-11-18 01:06:08 +00:00
|
|
|
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
2008-12-20 10:39:29 +00:00
|
|
|
* Released under the terms and conditions of the
|
|
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
|
|
*
|
|
|
|
* Plugin - newsfeeds
|
|
|
|
*
|
|
|
|
* $Source: /cvs_backup/e107_0.8/e107_plugins/newsfeed/e_help.php,v $
|
2010-02-10 18:18:01 +00:00
|
|
|
* $Revision$
|
|
|
|
* $Date$
|
|
|
|
* $Author$
|
2008-12-20 10:39:29 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
2015-02-07 13:38:29 -08:00
|
|
|
if (!e107::isInstalled('newsfeed'))
|
2008-12-20 10:39:29 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-23 09:41:23 -08:00
|
|
|
e107::includeLan(e_PLUGIN.'newsfeed/languages/'.e_LANGUAGE.'_admin_newsfeed.php');
|
2016-12-24 13:13:49 +00:00
|
|
|
$ns->tablerender(NFLAN_43, e107::getParser()->toHTML(NFLAN_42, true) );
|