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\inviteView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
InviteAcceptEvent:: |
protected | property | ||
InviteAcceptEvent:: |
public | function | Function to get Invite. | |
InviteAcceptEvent:: |
public | function | Function to set Invite.. | |
InviteAcceptEvent:: |
public | function | Construct. |