blob: ee094244c452befd06395879f2cd58525e58daf8 (
plain)
1
2
3
4
5
6
7
8
9
|
<?php
global $gBitSystem, $smarty;
$gBitSystem->registerPackage( 'calendar', dirname( __FILE__).'/' );
if( $gBitSystem->isPackageActive( 'calendar' ) ) {
$gBitSystem->registerAppMenu( 'calendar', 'Calendar', CALENDAR_PKG_URL.'index.php', 'bitpackage:calendar/menu_calendar.tpl', 'calendar');
}
?>
|