本文整理汇总了PHP中Translator::decorateTemplate方法的典型用法代码示例。如果您正苦于以下问题:PHP Translator::decorateTemplate方法的具体用法?PHP Translator::decorateTemplate怎么用?PHP Translator::decorateTemplate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Translator
的用法示例。
在下文中一共展示了Translator::decorateTemplate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Translator
$tpl->template_dir = Config::get_config('install_path') . 'templates';
$tpl->compile_dir = ConfusaConstants::$SMARTY_TEMPLATES_C;
$tpl->cache_dir = ConfusaConstants::$SMARTY_CACHE;
$subscriber = $person->getSubscriber();
if (isset($subscriber)) {
$help_email = $subscriber->getHelpEmail();
$tpl->assign('help_email', $help_email);
}
$tpl->assign('consent_val', $consent_val);
$tpl->assign('consumer_key', $consumer_key);
$tpl->assign('consumer_name', $consumer_info['name']);
$tpl->assign('consumer_description', $consumer_info['description']);
$tpl->assign('access_duration', $accTokenValidity);
$translator = new Translator();
$translator->guessBestLanguage($person);
$translator->decorateTemplate($tpl, 'oauth');
$tpl->display('api/oauth_consent.tpl');
break;
case '/consent':
$person = new Person();
$auth_idp = new Confusa_Auth_IdP($person);
$auth_idp->authenticate(FALSE);
if (!$person->isAuth()) {
header("HTTP/1.1 412 Precondition Failed");
echo "May not call the consent endpoint before the user " . "authenticated with their IdP!";
exit;
}
if ($_SESSION['oauth_authZ'] !== TRUE) {
header("HTTP/1.1 412 Precondition Failed");
echo "May not call the consent endpoint before the user " . "passed the authorization endpoint!";
exit;