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


PHP Settings::isPersonaAvailable方法代码示例

本文整理汇总了PHP中thebuggenie\core\framework\Settings::isPersonaAvailable方法的典型用法代码示例。如果您正苦于以下问题:PHP Settings::isPersonaAvailable方法的具体用法?PHP Settings::isPersonaAvailable怎么用?PHP Settings::isPersonaAvailable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在thebuggenie\core\framework\Settings的用法示例。


在下文中一共展示了Settings::isPersonaAvailable方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: rgba

?>
">
        </div>
    </form>
    <?php 
if (\thebuggenie\core\framework\Settings::isPersonaAvailable() || \thebuggenie\core\framework\Settings::isOpenIDavailable()) {
    ?>
        <div style="text-align: center;">
            <fieldset style="border: 0; border-top: 1px dotted rgba(0, 0, 0, 0.3); padding: 10px 100px; width: 100px; margin: 15px auto 0 auto;">
                <legend style="text-align: center; width: 100%; background-color: transparent;"><?php 
    echo __('%regular_login or %persona_or_openid_login', array('%regular_login' => '', '%persona_or_openid_login' => ''));
    ?>
</legend>
            </fieldset>
            <?php 
    if (\thebuggenie\core\framework\Settings::isPersonaAvailable()) {
        ?>
                <a class="persona-button" id="persona-signin-button" href="#"><span><?php 
        echo __('Sign in with Persona');
        ?>
</span></a>
            <?php 
    }
    ?>
            <?php 
    if (\thebuggenie\core\framework\Settings::isOpenIDavailable()) {
        ?>
                <a class="persona-button orange" id="openid-signin-button" href="javascript:void(0);" onclick="$('regular_login_container').toggleClassName('active');$('openid_container').toggleClassName('active');"><span><?php 
        echo __('Sign in with OpenID');
        ?>
</span></a>
开发者ID:founderio,项目名称:thebuggenie,代码行数:31,代码来源:_login.inc.php

示例2: include_component

    </div>
    <div id="fullpage_backdrop_content" class="fullpage_backdrop_content"> </div>
</div>
<?php 
if (\thebuggenie\core\framework\Context::getRouting()->getCurrentRouteName() != 'login_page' && $tbg_user->isGuest()) {
    ?>
    <div id="login_backdrop" class="fullpage_backdrop" style="display: none;">
        <div id="login_content" class="fullpage_backdrop_content">
            <?php 
    include_component('main/loginpopup', array('content' => get_component_html('main/login'), 'mandatory' => false));
    ?>
        </div>
    </div>
<?php 
}
if (\thebuggenie\core\framework\Settings::isPersonaAvailable() && ($tbg_user->isGuest() || $tbg_request->hasCookie('tbg3_persona_session'))) {
    ?>
    <script src="https://login.persona.org/include.js"></script>
    <script type="text/javascript">
        require(['domReady', 'thebuggenie/tbg', 'jquery'], function (domReady, tbgjs, jquery) {
            domReady(function () {
                TBG = tbgjs;
                var currentUser = <?php 
    echo !$tbg_user->isGuest() ? "'{$tbg_user->getEmail()}'" : 'null';
    ?>
;

                navigator.id.watch({
                  loggedInUser: currentUser,
                  onlogin: function(assertion) {
                    // A user has logged in! Here you need to:
开发者ID:pkdevboxy,项目名称:thebuggenie,代码行数:31,代码来源:backdrops.inc.php


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