summaryrefslogtreecommitdiff
path: root/content_permissions_inc.php
blob: 52d4886233f129e19a15754b1dbcb06a9692b1e1 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/**
 * @version  $Revision: 1.7 $
 * @package  liberty
 * @subpackage functions
 */

/* i think this file is not in use anymore - xing

$gBitSystem->verifyPermission( 'p_liberty_assign_content_perms' );

// If we haven't got any content loaded yet, load it
if( empty( $gContent ) ) {
	// make sure we have a content_id we can work with
	if( empty( $_REQUEST["perm_content_id"] ) || $_REQUEST["perm_content_id"] < 1 ) {
		$gBitSmarty->assign( 'msg', tra( "No valid content id given." ) );
		$gBitSystem->display( 'error.tpl' );
die;
	}

	$gContent = new LibertyContent();
	$gContent = $gContent->getLibertyObject( $_REQUEST['perm_content_id'] );
}
$gBitSmarty->assign_by_ref( 'gContent', $gContent );

// Process the form
// send the user to the content page if he wants to
if( !empty( $_REQUEST['back'] ) ) {
	header( "Location: ".$gContent->getDisplayUrl() );
	die;
}

// Update database if needed
if( !empty( $_REQUEST["perm_group_id"] ) && !empty( $gContent->mContentId ) && !empty( $_REQUEST["perm"] ) ) {
	if( isset( $_REQUEST["assign"] ) ) {
		$gContent->storePermission( $_REQUEST["perm_group_id"], $_REQUEST["perm"], $gContent->mContentId );
	}

	if( isset( $_REQUEST["action"] ) ) {
		if( $_REQUEST["action"] == 'remove' ) {
			$gContent->removePermission( $_REQUEST["perm_group_id"], $_REQUEST["perm"] );
		}
	}
}

// Now we have to get the individual object permissions if any
$assignedPerms = $gContent->loadAllObjectPermissions( $_REQUEST );
$gBitSmarty->assign( 'assignedPerms', $assignedPerms );

// Get a list of groups
$listHash = array( 'sort_mode' => 'group_name_asc' );
$userGroups = $gBitUser->getAllGroups( $listHash );
$gBitSmarty->assign_by_ref( 'userGroups', $userGroups["data"] );

// Get a list of permissions
if( empty( $assignPerms ) ) {
	if( !empty( $gContent->mType['handler_package'] ) ) {
		$assignPerms = $gBitUser->getGroupPermissions( NULL, $gContent->mType['handler_package'] );
	} else {
		$assignPerms = $gBitUser->mPerms;
	}
}
$gBitSmarty->assign_by_ref( 'assignPerms', $assignPerms );
 */
?>