blob: 5f92f2d7aac17627e99608190a51de8b5b4e529f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
namespace Bitweaver\Plugins;
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
/**
* smarty_function_rss
*/
function smarty_function_rss($params, &$gBitSmarty) {
global $gLibertySystem;
include_once( LIBERTY_PKG_PATH.'plugins/data.rss.php' );
$feed = rss_parse_data("", $params);
print $feed;
}
|