%PDF- %PDF-
Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/user/authclient/ |
Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/user/authclient/Facebook.php |
<?php /** * @link https://www.humhub.org/ * @copyright Copyright (c) 2016 HumHub GmbH & Co. KG * @license https://www.humhub.com/licences */ namespace humhub\modules\user\authclient; /** * @inheritdoc */ class Facebook extends \yii\authclient\clients\Facebook { /** * @inheritdoc */ protected function defaultViewOptions() { return [ 'popupWidth' => 860, 'popupHeight' => 480, 'cssIcon' => 'fa fa-facebook', 'buttonBackgroundColor' => '#395697', ]; } /** * @inheritdoc */ protected function defaultNormalizeUserAttributeMap() { return [ 'username' => 'name', 'firstname' => function ($attributes) { if (!isset($attributes['name'])) { return ''; } $parts = mb_split(' ', $attributes['name'], 2); if (isset($parts[0])) { return $parts[0]; } return ''; }, 'lastname' => function ($attributes) { if (!isset($attributes['name'])) { return ''; } $parts = mb_split(' ', $attributes['name'], 2); if (isset($parts[1])) { return $parts[1]; } return ''; }, ]; } }