added views and Authclients

This commit is contained in:
Antonio Ramirez
2016-12-10 20:55:17 +01:00
parent 1c863f815a
commit 6d47dcaf22
41 changed files with 1876 additions and 5 deletions

View 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');
}
}