summaryrefslogtreecommitdiff
path: root/includes/bit_setup_inc.php
blob: 1f40c41a5d87a73099177ce5109f4ebd83159b93 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/**
 * @package articles
 */
namespace Bitweaver\Articles;

use Bitweaver\KernelTools;
global $gBitSystem, $gBitUser, $gBitSmarty;
$pRegisterHash = [
	'package_name' => 'articles',
	'package_path' => dirname( dirname( __FILE__ ) ).'/',
	'homeable' => true,
];

// fix to quieten down VS Code which can't see the dynamic creation of these ...
define( 'ARTICLES_PKG_NAME', $pRegisterHash['package_name'] );
define( 'ARTICLES_PKG_URL', BIT_ROOT_URL . basename( $pRegisterHash['package_path'] ) . '/' );
define( 'ARTICLES_PKG_PATH', BIT_ROOT_PATH . basename( $pRegisterHash['package_path'] ) . '/' );
define( 'ARTICLES_PKG_INCLUDE_PATH', BIT_ROOT_PATH . basename( $pRegisterHash['package_path'] ) . '/includes/');
define( 'ARTICLES_PKG_CLASS_PATH', BIT_ROOT_PATH . basename( $pRegisterHash['package_path'] ) . '/includes/classes/');
define( 'ARTICLES_PKG_ADMIN_PATH', BIT_ROOT_PATH . basename( $pRegisterHash['package_path'] ) . '/admin/');

$gBitSystem->registerPackage( $pRegisterHash );

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 = [
			'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( [ "article_submitted" => KernelTools::tra( "A user submits an article" ) ] );
}