blob: 9828a3273566afe10e4d2134c34fd4dcb6142536 (
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
|
<?php
/**
* $Header: /cvsroot/bitweaver/_bit_liberty/ajax_edit_storage.php,v 1.7 2008/07/15 18:57:49 wjames5 Exp $
* @version $Revision: 1.7 $
* @package liberty
* @subpackage functions
*/
/**
* required setup
*/
global $gContent;
include_once( '../bit_setup_inc.php' );
// load the content
include_once( LIBERTY_PKG_PATH.'lookup_content_inc.php' );
// process the information
include_once( LIBERTY_PKG_PATH.'edit_storage_inc.php' );
// fetch the content of the page to display
$gBitThemes->setFormatHeader( 'center_only' );
$gBitSmarty->assign( 'uploadTab', TRUE );
if( isset( $_REQUEST['form_id'] ) ){
$gBitSmarty->assign( 'form_id', $_REQUEST['form_id'] );
}
$gBitSystem->display( 'bitpackage:liberty/edit_storage_list.tpl' , NULL, array( 'display_mode' => 'edit' ));
?>
|