<?php
/* +----------------------------------------------------------------------+
| Netautor Professional Application Server |
+----------------------------------------------------------------------+
| Copyright (C) 1998-2005 digiconcept GmbH. <www.digiconcept.net> |
+----------------------------------------------------------------------+
| This file is subject to license, that is bundled with this package |
| in the file LICENSE.TXT, and is available at through the |
| world-wide-web at http://www.netautor.com/license/ |
| |
| If you did not receive a copy of the license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| hide@address.com so we can mail you a copy. |
+----------------------------------------------------------------------+
| Authors: Stefan Rottensteiner <hide@address.com> |
| Marek Kadziela <hide@address.com> |
| Gregor Wollner |
| Christian Unger |
| Helli Kleinhans |
+----------------------------------------------------------------------+*/
/**
* Kopf mit Setlist etc. für den Medienpool
*
* @version $Revision: 1.10 $
* @author Stefan Rottensteiner
*/
require_once('../../include/init.inc');
if(!$USER->check_feature('Admin') && !$USER->check_feature('ac_mediapool'))
{
$USER->login_call();
}
$LOCALE->textdomain('mediapool');
// include necessary functions
includeNaPro('file');
$files_set_pos = intval($_POST['files_set_pos']);
$location_path = strval($_POST['location_path']);
$location_folder = strval($_POST['location_folder']);
$files_mask = strval($_POST['files_mask']);
?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>
<head>
<title>/digiconcept/netautor/mediapool.main</title>
<link href="../../include/netautor.css" rel="stylesheet" type="text/css" src="../include/netautor.css">
</head>
<body bgcolor="#ffffff" class="imagepool">
<form
method ="post"
id ="mp_form"
name ="mp_form" >
<table width="700" height="41" border="0" cellspacing="0" cellpadding="0">
<tr height="1">
<td width="700" height="1" align="center" valign="center" style="background-color:#CBCBCB;">
<img src="../../grafik/pixel.gif" width="700" height="1"><br>
</td>
</tr>
<tr height="40">
<td width="700" height="40" align="center" valign="center" class="bgstripes">
<?php
if ( $GLOBALS['USER']->check_feature('Admin') || $GLOBALS['USER']->check_feature('ac_upload') || $GLOBALS['USER']->ID > 100 )
{
?>
<input type="button" value="<?php echo( $LOCALE->gettext('button_new_upload') ); ?>" name="upload" class="create" onClick="document.location.href='mp_index_upload.php';">
<?php
}
?>
<input type="submit" value="<?php echo( $LOCALE->gettext('button_refresh') ); ?>" name="refresh" class="new">
<!-- <input type="submit" value="<?php echo( $LOCALE->gettext('button_delete') ); ?>" name="delete" class="delete"><br> -->
<img src="../../grafik/pixel.gif" width="700" height="1"><br>
</td>
</tr>
</table>
</form>
</body>
</html>