本文整理汇总了PHP中HTML_TEMPLATE_IT::loadTemplatefile方法的典型用法代码示例。如果您正苦于以下问题:PHP HTML_TEMPLATE_IT::loadTemplatefile方法的具体用法?PHP HTML_TEMPLATE_IT::loadTemplatefile怎么用?PHP HTML_TEMPLATE_IT::loadTemplatefile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HTML_TEMPLATE_IT
的用法示例。
在下文中一共展示了HTML_TEMPLATE_IT::loadTemplatefile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Exception
throw new Exception("No write access on this container.", E_USER_RIGHTS);
}
if (empty($problem)) {
$docextern = steam_factory::create_docextern($GLOBALS["STEAM"]->get_id(), $values["name"], $values["url"], $environment, $values["desc"]);
header("Location: " . $values["return_to"]);
exit;
} else {
$portal->set_problem_description($problem, $hint);
}
} else {
$portal->set_problem_description($problem, $hint);
}
}
}
$content = new HTML_TEMPLATE_IT();
$content->loadTemplatefile(PATH_TEMPLATES . "weblog_blogroll.template.html");
if (!empty($problem)) {
$content->setVariable("VALUE_NAME", $values["name"]);
$content->setVariable("VALUE_URL", $values["url"]);
$content->setVariable("VALUE_DESC", $values["desc"]);
}
$content->setVariable("GREETING", str_replace("%n", $portal->get_user()->get_forename(), gettext("Hi %n!")));
$help_text = "<b>" . gettext("What is a blogroll?") . "</b> " . gettext("A blogroll is a collection of links to other weblogs.") . " " . gettext("When present, blogrolls are on the front page sidebar of most weblogs.") . " " . gettext("Some blogrolls also simply consist of the list of weblogs an author reads himself.");
$content->setVariable("HELP_TEXT", $help_text);
$content->setVariable("YOUR_BLOGROLL_TEXT", gettext("Your Blogroll"));
$content->setVariable("CREATE_NEW_LINK_TEXT", gettext("Create new Link"));
$content->setVariable("FORM_ACTION", "");
//PATH_URL . "docextern_create.php" );
$content->setVariable("ENVIRONMENT", $weblog->get_blogroll()->get_id());
$content->setVariable("LABEL_NAME", gettext("Name"));
$content->setVariable("LABEL_URL", gettext("URL"));
示例2: gettext
$values = $_POST["values"];
$problem = "";
$hint = "";
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/");