当前位置: 首页>>代码示例>>PHP>>正文


PHP Translator::decorateTemplate方法代码示例

本文整理汇总了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;
开发者ID:henrikau,项目名称:confusa,代码行数:31,代码来源:oauth.php


注:本文中的Translator::decorateTemplate方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。