如果我只想在关联公司页面(affiliates.php)上显示sidemenu,而不是在我的代码中显示:
if (App::getCurrentFilename() == 'affiliates'){
}
但如何对页面index.php?m=somepage
执行相同操作?
答案 0 :(得分:1)
您可以使用php内置变量来获取URI,但是如果您想使用应用程序对象来获取特定参数,您可以执行以下操作:
$whmcs = App::self();
$module = $whmcs->get_req_var('m');