You are here

interface FacebookAuthSettingsInterface in Open Social 8.3

Same name and namespace in other branches
  1. 8.9 modules/custom/social_auth_facebook/src/Settings/FacebookAuthSettingsInterface.php \Drupal\social_auth_facebook\Settings\FacebookAuthSettingsInterface
  2. 8 modules/custom/social_auth_facebook/src/Settings/FacebookAuthSettingsInterface.php \Drupal\social_auth_facebook\Settings\FacebookAuthSettingsInterface
  3. 8.2 modules/custom/social_auth_facebook/src/Settings/FacebookAuthSettingsInterface.php \Drupal\social_auth_facebook\Settings\FacebookAuthSettingsInterface
  4. 8.4 modules/custom/social_auth_facebook/src/Settings/FacebookAuthSettingsInterface.php \Drupal\social_auth_facebook\Settings\FacebookAuthSettingsInterface
  5. 8.5 modules/custom/social_auth_facebook/src/Settings/FacebookAuthSettingsInterface.php \Drupal\social_auth_facebook\Settings\FacebookAuthSettingsInterface
  6. 8.6 modules/custom/social_auth_facebook/src/Settings/FacebookAuthSettingsInterface.php \Drupal\social_auth_facebook\Settings\FacebookAuthSettingsInterface
  7. 8.7 modules/custom/social_auth_facebook/src/Settings/FacebookAuthSettingsInterface.php \Drupal\social_auth_facebook\Settings\FacebookAuthSettingsInterface
  8. 8.8 modules/custom/social_auth_facebook/src/Settings/FacebookAuthSettingsInterface.php \Drupal\social_auth_facebook\Settings\FacebookAuthSettingsInterface

Defines an interface for Social Auth Facebook settings.

Hierarchy

Expanded class hierarchy of FacebookAuthSettingsInterface

All classes that implement FacebookAuthSettingsInterface

File

modules/custom/social_auth_facebook/src/Settings/FacebookAuthSettingsInterface.php, line 8

Namespace

Drupal\social_auth_facebook\Settings
View source
interface FacebookAuthSettingsInterface {

  /**
   * Gets the app ID.
   *
   * @return string
   *   The app ID.
   */
  public function getAppId();

  /**
   * Gets the app secret.
   *
   * @return string
   *   The app secret.
   */
  public function getAppSecret();

  /**
   * Gets the default graph version.
   *
   * @return string
   *   The app default graph version.
   */
  public function getGraphVersion();

  /**
   * Returns status of social network.
   *
   * @return bool
   *   The status of the social network.
   */
  public function isActive();

  /**
   * Returns key-name of a social network.
   *
   * @return string
   *   The key-name of a social network.
   */
  public static function getSocialNetworkKey();

}

Members

Namesort descending Modifiers Type Description Overrides
FacebookAuthSettingsInterface::getAppId public function Gets the app ID. 1
FacebookAuthSettingsInterface::getAppSecret public function Gets the app secret. 1
FacebookAuthSettingsInterface::getGraphVersion public function Gets the default graph version. 1
FacebookAuthSettingsInterface::getSocialNetworkKey public static function Returns key-name of a social network. 1
FacebookAuthSettingsInterface::isActive public function Returns status of social network. 1