blob: 50cee6291f3782b5c65d81bffdbc96918fc47499 (
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
|
<?php
/**
* @version $Header$
* @package liberty
* @subpackage functions
*/
/**
* required setup
*/
require_once '../kernel/includes/setup_inc.php';
global $gContent, $gBitSmarty;
$gContent = new LibertyMime();
if( isset( $_REQUEST['content_id'] )) {
$gContent->mContentId = $_REQUEST['content_id'];
}
$gBitSmarty->assign( 'attachmentBrowser', true );
include_once( LIBERTY_PKG_PATH.'attachment_browser.php' );
if( isset( $_REQUEST['json'] )){
header( 'Content-type:application/json' );
$gBitSmarty->display( 'bitpackage:liberty/attachment_browser_json.tpl' );
} else {
echo $gBitSmarty->fetch( 'bitpackage:liberty/attachment_browser.tpl' );
}
?>
|