blob: e747f8232323e0ecf167492693affa4529e949a7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
global $gBitSystem, $gBitUser, $gBitSmarty;
$gBitSystem->registerPackage( 'articles', dirname( __FILE__ ).'/' );
if( $gBitSystem->isPackageActive( 'articles' ) ) {
$gBitSystem->registerAppMenu( ARTICLES_PKG_NAME, ucfirst( ARTICLES_PKG_DIR ), ARTICLES_PKG_URL.'index.php', 'bitpackage:articles/menu_articles.tpl', ARTICLES_PKG_NAME );
$gBitSystem->registerNotifyEvent( array( "article_submitted" => tra( "A user submits an article" ) ) );
}
?>
|