本文整理汇总了PHP中Current_User::getAuthkey方法的典型用法代码示例。如果您正苦于以下问题:PHP Current_User::getAuthkey方法的具体用法?PHP Current_User::getAuthkey怎么用?PHP Current_User::getAuthkey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Current_User
的用法示例。
在下文中一共展示了Current_User::getAuthkey方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: viewContactApprovals
private function viewContactApprovals()
{
$development = false;
if ($development) {
$script_file = 'src/Approval.jsx';
$type = 'text/jsx';
} else {
$script_file = 'build/Approval.js';
$type = 'text/javascript';
}
$data['development'] = $development;
$data['addons'] = false;
javascript('react', $data);
$script = '<script type="' . $type . '" src="' . PHPWS_SOURCE_HTTP . 'mod/properties/javascript/ContactApproval/' . $script_file . '"></script>' . '<script type="text/javascript">var authkey="' . \Current_User::getAuthkey() . '";</script>';
\Layout::addJSHeader($script);
$vars['authkey'] = \Current_User::getAuthKey();
$template = new \Template($vars);
$template->setModuleTemplate('properties', 'ManagerSignUp.html');
$this->title = 'Contact Approval';
$this->content = '<div id="ContactApproval"></div>';
}