You are here

class InviteAcceptEvent in Invite 8

Invite Accept class.

@codingStandardsIgnoreStart

Hierarchy

  • class \Drupal\invite\InviteAcceptEvent extends \Symfony\Component\EventDispatcher\Event

Expanded class hierarchy of InviteAcceptEvent

1 file declares its use of InviteAcceptEvent
InviteAccept.php in src/Controller/InviteAccept.php

File

src/InviteAcceptEvent.php, line 12

Namespace

Drupal\invite
View source
class InviteAcceptEvent extends Event {
  protected $invite_accept;

  /**
   * Construct.
   *
   * @codingStandardsIgnoreEnd
   */
  public function __construct($invite_accept) {
    $this->invite_accept = $invite_accept;
  }

  /**
   * Function to get Invite.
   */
  public function getInviteAcceptEvent() {
    return $this->invite_accept;
  }

  /**
   * Function to set Invite..
   */
  public function setInviteAcceptEvent($invite_accept) {
    $this->invite_accept = $invite_accept;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
InviteAcceptEvent::$invite_accept protected property
InviteAcceptEvent::getInviteAcceptEvent public function Function to get Invite.
InviteAcceptEvent::setInviteAcceptEvent public function Function to set Invite..
InviteAcceptEvent::__construct public function Construct.