blob: be7695650867f131d104b1196a11bae5d53343c3 (
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
26
27
28
29
|
<?php
$registerHash = array(
'package_name' => 'articles',
'package_path' => dirname( __FILE__ ).'/',
'homeable' => TRUE,
);
$gBitSystem->registerPackage( $registerHash );
if( $gBitSystem->isPackageActive( 'articles' ) ) {
define( 'ARTICLE_STATUS_DENIED', 0 );
define( 'ARTICLE_STATUS_DRAFT', 100 );
define( 'ARTICLE_STATUS_PENDING', 200 );
define( 'ARTICLE_STATUS_APPROVED', 300 );
define( 'ARTICLE_STATUS_RETIRED', 400 );
if( $gBitUser->hasPermission( 'p_articles_read' )) {
$menuHash = array(
'package_name' => ARTICLES_PKG_NAME,
'index_url' => ARTICLES_PKG_URL.'index.php',
'menu_template' => 'bitpackage:articles/menu_articles.tpl',
'admin_comments_url' => ARTICLES_PKG_URL.'admin/admin_types.php',
);
$gBitSystem->registerAppMenu( $menuHash );
}
$gBitSystem->registerNotifyEvent( array( "article_submitted" => tra( "A user submits an article" ) ) );
}
?>
|