summaryrefslogtreecommitdiff
path: root/admin/schema_inc.php
blob: e09932600e76a5af0753c757e33a205f1788a7db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
global $gBitInstaller;

$gBitInstaller->makePackageHomeable( 'calendar' );

$gBitInstaller->registerPackageInfo( CALENDAR_PKG_NAME, array(
	'description' => "Calendar package to display bitweaver entries by date, and set events",
	'license' => '<a href="http://www.gnu.org/licenses/licenses.html#LGPL">LGPL</a>',
) );

// ### Default User Permissions
$gBitInstaller->registerUserPermissions( CALENDAR_PKG_NAME, array(
	array('bit_p_view_calendar', 'Can browse the calendar', 'basic', CALENDAR_PKG_NAME),
) );
?>