DaoKeCMS插件可以注册前端虚拟页面,通过?mod={slug}或?mod={slug}_{action}访问。
// main.php 中
if (req('mod') === 'download') {
// 渲染下载列表页
$items = myplugin_get_downloads();
include template_path('download.php');
exit;
}
if (req('mod') === 'downdetail') {
// 渲染下载详情页
$id = intval2(get('id', 0));
$item = myplugin_get_download($id);
include template_path('downdetail.php');
exit;
}