Example #1
0
    if (!empty($values["file_id"])) {
        // ALTER AN EXISTING DOCUMENT
    } else {
        // UPLOAD A NEW DOCUMENT
        if (!empty($values["desc"])) {
            $problem .= gettext("Please describe the file.") . " ";
            $hint .= "";
        }
        $new_file = $podspace->upload("FILE_TO_UPLOAD");
    }
}
$content = new HTML_TEMPLATE_IT();
$content->loadTemplatefile(PATH_TEMPLATES . "weblog_podcast.template.html");
$content->setVariable("GREETING", str_replace("%n", $portal->get_user()->get_forename(), gettext("Hi %n!")));
if (empty($_GET["file"])) {
    $content->touchBlock("BLOCK_UPLOAD");
}
$help_text = "<b>" . gettext("What is podcasting?") . "</b> " . gettext("Podcasting is the method of distributing multimedia files, such as audio programs, over the Internet using syndication feeds, for playback on mobile decices and personal computers.");
$help_text .= "<br/><br/>" . gettext("The podcast is also available as a webfolder:") . " <a href=\"https://" . STEAM_SERVER . $podspace->get_path() . "\">WebDAV Mountpoint</a>";
$content->setVariable("HELP_TEXT", $help_text);
$content->setVariable("YOUR_PODSCPACE_TEXT", gettext("Your Podspace"));
$content->setVariable("UPLOAD_NEW_FILE_TEXT", gettext("Upload a multimedia file"));
$content->setVariable("PODSPACE", $podspace->get_id());
$content->setVariable("LABEL_FILE", gettext("File"));
$content->setVariable("LABEL_DESCRIPTION", gettext("Description"));
$content->setVariable("LABEL_KEYWORDS", gettext("Keywords"));
$content->setVariable("LABEL_SAVE_CHANGES", gettext("Save changes"));
$content->setVariable("BACK_LINK", PATH_URL . "weblog/" . $weblog->get_id() . "/podspace/");
$content->setVariable("YOUR_PODSPACE_TEXT", gettext("Your Podspace"));
$files_in_podspace = $podspace->get_inventory(CLASS_DOCUMENT);
if (count($files_in_podspace) == 0) {