blob: 9f3aef00c3d4693615bfd423496a93b9320855c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?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 );
}
|