summaryrefslogtreecommitdiff
path: root/attachments.php
blob: 715e7cb66de9372076e416ed89b04b204154ac22 (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
<?php
/**
 * attachment_browser
 *
 * @author   spider <spider@steelsun.com>
 * @version  $Revision: 1.8 $
 * @package  liberty
 * @subpackage functions
 */

/**
 * bit setup
 */
require_once("../kernel/setup_inc.php");

$gContent = new LibertyMime();

if( !$gBitUser->isRegistered() ) {
	$gBitSystem->fatalError( tra( 'You need to be logged in to view this page.' ));
}

$feedback = array();
$listHash = &$_REQUEST;
if( $gBitUser->isAdmin() ) {
	if( !empty( $listHash['login'] ) && $listHash['login'] == 'all' ) {
		$listHash['user_id'] = NULL;
	} elseif( !empty( $listHash['login'] ) ) {
		if( $userInfo = $gBitUser->getUserInfo( array( 'login' => $listHash['login'] ) ) ) {
			$listHash['user_id'] = $userInfo['user_id'];
		} else {
			$feedback['error'] = tra( 'That user does not exist.' );
		}
	} else {
		$listHash['user_id'] = $gBitUser->mUserId;
	}
} else {
	$listHash['user_id'] = $gBitUser->mUserId;
}
$attachments = $gContent->getAttachmentList( $listHash );

$gBitSmarty->assign( 'listInfo', $listHash['listInfo'] );
$gBitSmarty->assign( 'attachments', $attachments );
$gBitSmarty->assign( 'feedback', $feedback );
$gBitSystem->display( 'bitpackage:liberty/attachments.tpl', tra( 'Attachments' ), array( 'display_mode' => 'display' ));
?>