Vous êtes connecté en tant que anonymous Se Deconnecter
application/include/controlleurs/compte.php
8640b6e0
 <?php
 \MVC\Session::isregistered();
 
 require CONFIG_PATH . DIRECTORY_SEPARATOR . "authentification-config-example.php";
 
 $hybridauth = new Hybridauth\Hybridauth($config);
 $adapters = $hybridauth->getConnectedAdapters();
 
 $templateData['adapters'] = $adapters;
 
 $templateData['extractedData'] = [
     'token' => $_SESSION['userToken'],
     'identifier' => $_SESSION['userProfile']->identifier,
     'email' => $_SESSION['userProfile']->email,
     'first_name' => $_SESSION['userProfile']->firstName,
     'last_name' => $_SESSION['userProfile']->lastName,
     'photoURL' => strtok($_SESSION['userProfile']->photoURL, '?'),
 ];