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