當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。