blob: c8c11f3ac6380e3bd5cab8a0ddb8772bd56ee4e3 (
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$
* @version $Revision$
* @package liberty
* @subpackage functions
*/
/**
* required setup
*/
global $gContent;
include_once( '../kernel/includes/setup_inc.php' );
// load the content
include_once( LIBERTY_PKG_INCLUDE_PATH.'lookup_content_inc.php' );
// process the information
include_once( LIBERTY_PKG_INCLUDE_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, [ 'display_mode' => 'edit' ]);
?>
|