view e2gallerypro/e2upload/managerxml.php @ 6:300619cf1669 judyates

[svn r7] addws left and right arrows; struggling with inmotion to get the fucker to work on their site
author rlm
date Mon, 22 Feb 2010 10:25:51 -0500
parents 3f6b44aa6b35
children
line wrap: on
line source
1 <?php
2 include('../e2config.php');
3 include('Backend/FileManager.php');
5 // Please add your own authentication here
6 function UploadIsAuthenticated($get){
7 if(!empty($get['session'])) return true;
9 return false;
10 }
12 $browser = new FileManager(array(
13 'directory' => XML_LOCATION,
14 'assetBasePath' => 'Assets',
15 'upload' => true,
16 'destroy' => true,
17 ));
19 $browser->fireEvent(!empty($_GET['event']) ? $_GET['event'] : null);