blob: fdb877ce61834871578acadf09e8acc91a9ea90d (
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( __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" )));
}
?>
|