本文整理匯總了PHP中HTML_TEMPLATE_IT::set_attribute方法的典型用法代碼示例。如果您正苦於以下問題:PHP HTML_TEMPLATE_IT::set_attribute方法的具體用法?PHP HTML_TEMPLATE_IT::set_attribute怎麽用?PHP HTML_TEMPLATE_IT::set_attribute使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類HTML_TEMPLATE_IT
的用法示例。
在下文中一共展示了HTML_TEMPLATE_IT::set_attribute方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: gettext
$portal->initialize(GUEST_NOT_ALLOWED);
$content = new HTML_TEMPLATE_IT(PATH_TEMPLATES_UNITS_HOMEWORK);
$content->loadTemplateFile("units_homework_feedback.template.html");
$feedback = $docu->get_attribute("HOMEWORK_FEEDBACK");
$points = $docu->get_attribute("HOMEWORK_POINTS");
if ($group_learners->is_member($user)) {
//Fedback f�r Studenten
if (isset($feedback) && !$feedback == 0) {
$content->setVariable("LABEL_REAL_FEEDBACK", $feedback);
} else {
$content->setVariable("LABEL_REAL_FEEDBACK", gettext("There is no feedback for this homework."));
}
if (isset($points)) {
$content->setVariable("LABEL_HOMEWORK_POINTS", $points);
} else {
$content->set_attribute("LABEL_HOMEWORK_POINTS", gettext("There are no points set for this homework."));
}
} else {
//Feedback f�r Tutoren
if (isset($feedback) && !$feedback == 0) {
$content->setVariable("LABEL_REAL_FEEDBACK", "<textarea name=\"values[feedback]\" rows=\"12\" cols=\"50\">" . $feedback . "</textarea>");
} else {
$content->setVariable("LABEL_REAL_FEEDBACK", "<textarea name=\"values[feedback]\" rows=\"12\" cols=\"50\"></textarea>");
}
if (isset($points)) {
$content->setVariable("LABEL_HOMEWORK_POINTS", "<input type=\"text\" name=\"values[points]\" value=\" " . $points . "\" size=\"8\">");
} else {
$content->setVariable("LABEL_HOMEWORK_POINTS", "<input type=\"text\" name=\"values[points]\" size=\"8\">");
}
$content->setVariable("BUTTON_GIVE_FEEDBACK", "<input type=\"submit\" value=\"" . gettext("give feedback") . "\">" . gettext(" or "));
}