blob: eb1297e370f57f362177086df4c72a500ec84319 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
global $gBitSystem, $gBitSmarty;
$registerHash = array(
'package_name' => 'rss',
'package_path' => dirname( __FILE__ ).'/',
);
$gBitSystem->registerPackage( $registerHash );
if( $gBitSystem->isPackageActive( 'rss' ) ) {
$menuHash = array(
'package_name' => RSS_PKG_NAME,
'index_url' => RSS_PKG_URL.'index.php',
'menu_template' => 'bitpackage:rss/menu_rss.tpl',
);
$gBitSystem->registerAppMenu( $menuHash );
}
?>
|