本文整理匯總了PHP中notice::replace_form方法的典型用法代碼示例。如果您正苦於以下問題:PHP notice::replace_form方法的具體用法?PHP notice::replace_form怎麽用?PHP notice::replace_form使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類notice
的用法示例。
在下文中一共展示了notice::replace_form方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: die
if (stristr($_SERVER['REQUEST_URI'], ".inc.php")) {
die("no access");
}
// page de remplacement notice
//verification des droits de modification notice
$acces_m = 1;
if ($gestion_acces_active == 1 && $gestion_acces_user_notice == 1) {
require_once "{$class_path}/acces.class.php";
$ac = new acces();
$dom_1 = $ac->setDomain(1);
$acces_m = $dom_1->getRights($PMBuserid, $id, 8);
}
if ($acces_m == 0) {
error_message('', htmlentities($dom_1->getComment('mod_noti_error'), ENT_QUOTES, $charset), 1, '');
} else {
print "<h1>{$msg['catal_rep_not_h1']}</h1>";
if (!$by) {
require_once "{$include_path}/templates/catal_form.tpl.php";
$notice = new notice($id);
$notice->replace_form();
} else {
// routine de remplacement
$notice = new notice($id);
$rep_result = $notice->replace($by);
if (!$rep_result) {
print "<div class='row'><div class='msg-perio'>" . $msg["maj_encours"] . "</div></div>\n\t\t\t\t<script type=\"text/javascript\">document.location='./catalog.php?categ=isbd&id={$by}'</script>";
} else {
error_message($msg[132], $rep_result, 1, "./catalog.php?categ=modif&id={$id}");
}
}
}