".i18n::translate('Upload media files')."
";
$action = safe_POST('action');
if ($action == "upload") {
process_uploadMedia_form();
}
// Check if Media Directory is writeable or if Media features are enabled
// If one of these is not true then do not continue
if (!dir_is_writable($MEDIA_DIRECTORY) || !$MULTI_MEDIA) {
echo "";
echo i18n::translate('Uploading media files is not allowed because multi-media items have been disabled or because the media directory is not writable.');
echo "
";
} else {
show_mediaUpload_form('uploadmedia.php', false); // We have the green light to upload media, print the form
}
print_footer();