You are here

interface LoginDestinationManagerInterface in Login Destination 8

Same name and namespace in other branches
  1. 8.2 src/LoginDestinationManagerInterface.php \Drupal\login_destination\LoginDestinationManagerInterface

Defines a login destination manager service interface.

Hierarchy

Expanded class hierarchy of LoginDestinationManagerInterface

All classes that implement LoginDestinationManagerInterface

File

src/LoginDestinationManagerInterface.php, line 11

Namespace

Drupal\login_destination
View source
interface LoginDestinationManagerInterface {

  /**
   * Find destination.
   *
   * @param string $trigger
   *   Trigger.
   * @param \Drupal\Core\Session\AccountInterface $account
   *   User account.
   *
   * @return bool|\Drupal\login_destination\Entity\LoginDestination
   */
  public function findDestination($trigger, AccountInterface $account);

  /**
   * Prepare request destination provided by login destination rule.
   *
   * @param \Drupal\login_destination\Entity\LoginDestination $destination
   *   Login destination rule.
   */
  public function prepareDestination(LoginDestination $destination);

}

Members

Namesort descending Modifiers Type Description Overrides
LoginDestinationManagerInterface::findDestination public function Find destination. 1
LoginDestinationManagerInterface::prepareDestination public function Prepare request destination provided by login destination rule. 1