本文整理匯總了PHP中news::process_news方法的典型用法代碼示例。如果您正苦於以下問題:PHP news::process_news方法的具體用法?PHP news::process_news怎麽用?PHP news::process_news使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類news
的用法示例。
在下文中一共展示了news::process_news方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: print
function _news_archive() {
//
// main method for news
// called from database menu entry
// calls form_news(), process_news(), display_news()
//
// always check dependencies
if ($exitinfo = module::missing_dependencies('vaccine')) {
return print($exitinfo);
}
if (func_num_args()>0) {
$arg_list = func_get_args();
$menu_id = $arg_list[0];
$post_vars = $arg_list[1];
$get_vars = $arg_list[2];
$validuser = $arg_list[3];
$isadmin = $arg_list[4];
//print_r($arg_list);
}
//static $n;
$n = new news;
print "<table width='600' cellspacing='0' cellpadding='0'><tr valign='top'><td>";
$n->form_news($menu_id, $post_vars, $get_vars, $isadmin);
print "</td><td>";
if ($post_vars["submitnews"]) {
print "hello";
$n->process_news($menu_id, $post_vars, $get_vars);
}
$n->display_news($menu_id, $post_vars, $get_vars);
print "</td></tr></table>";
}