added views and Authclients
This commit is contained in:
39
lib/User/AuthClient/VKontakte.php
Normal file
39
lib/User/AuthClient/VKontakte.php
Normal file
@ -0,0 +1,39 @@
|
||||
<?php
|
||||
namespace Da\User\AuthClient;
|
||||
|
||||
use Da\User\Contracts\AuthClientInterface;
|
||||
use Yii;
|
||||
|
||||
class VKontakte extends \yii\authclient\clients\VKontakte implements AuthClientInterface
|
||||
{
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public $scope = 'email';
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function getEmail()
|
||||
{
|
||||
return $this->getAccessToken()->getParam('email');
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function getUsername()
|
||||
{
|
||||
return isset($this->getUserAttributes()['screen_name'])
|
||||
? $this->getUserAttributes()['screen_name']
|
||||
: null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
protected function defaultTitle()
|
||||
{
|
||||
return Yii::t('user', 'VKontakte');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user