FacebookAuthPersistentDataHandler.php in Open Social 8.9
Same filename and directory in other branches
- 8 modules/custom/social_auth_facebook/src/FacebookAuthPersistentDataHandler.php
- 8.2 modules/custom/social_auth_facebook/src/FacebookAuthPersistentDataHandler.php
- 8.3 modules/custom/social_auth_facebook/src/FacebookAuthPersistentDataHandler.php
- 8.4 modules/custom/social_auth_facebook/src/FacebookAuthPersistentDataHandler.php
- 8.5 modules/custom/social_auth_facebook/src/FacebookAuthPersistentDataHandler.php
- 8.6 modules/custom/social_auth_facebook/src/FacebookAuthPersistentDataHandler.php
- 8.7 modules/custom/social_auth_facebook/src/FacebookAuthPersistentDataHandler.php
- 8.8 modules/custom/social_auth_facebook/src/FacebookAuthPersistentDataHandler.php
Namespace
Drupal\social_auth_facebookFile
modules/custom/social_auth_facebook/src/FacebookAuthPersistentDataHandler.phpView source
<?php
namespace Drupal\social_auth_facebook;
use Facebook\PersistentData\PersistentDataInterface;
use Drupal\social_auth_extra\AuthSessionDataHandler;
/**
* Variables are written to and read from session via this class.
*
* By default, Facebook SDK uses native PHP sessions for storing data. We
* implement Facebook\PersistentData\PersistentDataInterface using Symfony
* Sessions so that Facebook SDK will use that instead of native PHP sessions.
* Also SimpleFbConnect reads data from and writes data to session via this
* class.
*
* @see https://developers.facebook.com/docs/php/PersistentDataInterface/5.0.0
*/
class FacebookAuthPersistentDataHandler extends AuthSessionDataHandler implements PersistentDataInterface {
}
Classes
Name | Description |
---|---|
FacebookAuthPersistentDataHandler | Variables are written to and read from session via this class. |