blob: 4b4b55682322381582a113a5d4f482ab155a717e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
global $gBitSystem, $gBitUser;
$registerHash = array(
'package_name' => 'wiki',
'package_path' => dirname( dirname( __FILE__ ) ).'/',
'homeable' => TRUE,
);
$gBitSystem->registerPackage( $registerHash );
define( 'BITPAGE_CONTENT_TYPE_GUID', 'bitpage' );
if( $gBitSystem->isPackageActive( 'wiki' )) {
if( $gBitUser->hasPermission( 'p_wiki_view_page' )) {
$menuHash = array(
'package_name' => WIKI_PKG_NAME,
'index_url' => WIKI_PKG_URL.'index.php',
'menu_template' => 'bitpackage:wiki/menu_wiki.tpl',
);
$gBitSystem->registerAppMenu( $menuHash );
}
$gBitSystem->registerNotifyEvent( array( "wiki_page_changes" => tra( "Any wiki page is changed" )));
}
?>
|