コード例 #1
0
ファイル: User.php プロジェクト: underblaze/thebuggenie-4.1.0
 /**
  * Return (or create, assuming no external auth backend) a user based on
  * a provided openid identity
  *
  * @param string $identity
  *
  * @return \thebuggenie\core\entities\User
  */
 public static function getByOpenID($identity)
 {
     $user = null;
     if ($user_id = tables\OpenIdAccounts::getTable()->getUserIDfromIdentity($identity)) {
         $user = \thebuggenie\core\entities\User::getB2DBTable()->selectById($user_id);
     } elseif (!framework\Settings::isUsingExternalAuthenticationBackend() && framework\Settings::getOpenIDStatus() == 'all') {
         $user = new self();
         $user->setPassword(self::createPassword());
         $user->setUsername(self::createPassword() . self::createPassword());
         $user->setOpenIdLocked();
         $user->setActivated();
         $user->setEnabled();
         $user->setValidated();
         $user->save();
     }
     return $user;
 }
コード例 #2
0
ファイル: _user.inc.php プロジェクト: pkdevboxy/thebuggenie
><?php 
    echo __('Users can register with OpenID and link OpenID to existing accounts');
    ?>
</option>
                    <option value="existing"<?php 
    if (\thebuggenie\core\framework\Settings::getOpenIDStatus() == 'existing') {
        ?>
 selected<?php 
    }
    ?>
><?php 
    echo __('Users can only link OpenID logins with existing accounts');
    ?>
</option>
                    <option value="none"<?php 
    if (\thebuggenie\core\framework\Settings::getOpenIDStatus() == 'none') {
        ?>
 selected<?php 
    }
    ?>
><?php 
    echo __('OpenID authentication is disabled');
    ?>
</option>
                </select>
            <?php 
} else {
    ?>
                <div class="faded_out"><?php 
    echo __('OpenID support is not available when not using internal authentication');
    ?>