blob: 85c0796b53d5365a8dd99b28b64c759a929b8120 (
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: /cvsroot/bitweaver/_bit_liberty/ajax_attachment_browser.php,v 1.10 2010/02/08 21:27:23 wjames5 Exp $
* @package liberty
* @subpackage functions
*/
/**
* required setup
*/
require_once( '../kernel/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' );
}
?>
|