本文整理汇总了PHP中news::init_menu方法的典型用法代码示例。如果您正苦于以下问题:PHP news::init_menu方法的具体用法?PHP news::init_menu怎么用?PHP news::init_menu使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类news
的用法示例。
在下文中一共展示了news::init_menu方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
include '../modules/mc_report/class.mc_report.php';
$mc_report = new mc_report;
if (!$module->activated('mc_report') && $initmod) {
$mc_report->init_sql();
$mc_report->init_menu();
$mc_report->init_deps();
$mc_report->init_lang();
$mc_report->init_help();
}
}
if (file_exists('../modules/news/class.news.php')) {
include '../modules/news/class.news.php';
$news = new news;
if (!$module->activated('news') && $initmod) {
$news->init_sql();
$news->init_menu();
$news->init_deps();
$news->init_lang();
$news->init_help();
}
}
if (file_exists('../modules/notes/class.notes.php')) {
include '../modules/notes/class.notes.php';
$notes = new notes;
if (!$module->activated('notes') && $initmod) {
$notes->init_sql();
$notes->init_menu();
$notes->init_deps();
$notes->init_lang();
$notes->init_help();
}