You are here

interface PrivateMessageControllerInterface in Private Message 8.2

Same name and namespace in other branches
  1. 8 src/Controller/PrivateMessageControllerInterface.php \Drupal\private_message\Controller\PrivateMessageControllerInterface

Handles page callbacks for the Private Message module.

Hierarchy

Expanded class hierarchy of PrivateMessageControllerInterface

All classes that implement PrivateMessageControllerInterface

File

src/Controller/PrivateMessageControllerInterface.php, line 8

Namespace

Drupal\private_message\Controller
View source
interface PrivateMessageControllerInterface {

  /**
   * The Private message page.
   */
  public function privateMessagePage();

  /**
   * The private message module settings page.
   */
  public function pmSettingsPage();

  /**
   * The settings page specific to private message threads.
   */
  public function pmThreadSettingsPage();

  /**
   * The page for preparing to uninstall the module.
   */
  public function adminUninstallPage();

}

Members

Namesort descending Modifiers Type Description Overrides
PrivateMessageControllerInterface::adminUninstallPage public function The page for preparing to uninstall the module. 1
PrivateMessageControllerInterface::pmSettingsPage public function The private message module settings page. 1
PrivateMessageControllerInterface::pmThreadSettingsPage public function The settings page specific to private message threads. 1
PrivateMessageControllerInterface::privateMessagePage public function The Private message page. 1