本文整理汇总了PHP中License::givenKeys方法的典型用法代码示例。如果您正苦于以下问题:PHP License::givenKeys方法的具体用法?PHP License::givenKeys怎么用?PHP License::givenKeys使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类License
的用法示例。
在下文中一共展示了License::givenKeys方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: handler_licenses_reason
public function handler_licenses_reason($page)
{
$softwares = License::getSoftwares();
if (Post::has('disagree') || !Post::has('agree') || !Post::has('software') || !in_array(Post::s('software'), array_keys($softwares))) {
$this->handler_licenses($page);
} else {
$already_has = License::givenKeys(Post::s('software'), S::user()->id());
$software_rare = in_array(Post::v('software'), License::getRareSoftwares());
if (License::hasRights(S::user()) && !$already_has && !$software_rare) {
$this->handler_licenses_final($page, true);
} else {
$page->changeTpl('licenses/licenses_reason.tpl');
$page->assign('title', "Demande de licence pour {$softwares[Post::v('software')]} : raison");
$page->assign('software', Post::v('software'));
$page->assign('software_name', $softwares[Post::v('software')]);
$page->assign('software_rare', $software_rare);
$page->assign('already_has', $already_has);
}
}
}