You are here

class InviteConstants in Invite 8

InviteConstants project's contants.

Hierarchy

Expanded class hierarchy of InviteConstants

6 files declare their use of InviteConstants
invite.module in ./invite.module
Default file for Invite Project.
InviteAccept.php in src/Controller/InviteAccept.php
InviteList.php in src/Controller/InviteList.php
InviteResendForm.php in src/Form/InviteResendForm.php
InviteWithdrawForm.php in src/Form/InviteWithdrawForm.php

... See full list

File

src/InviteConstants.php, line 8

Namespace

Drupal\invite
View source
class InviteConstants {

  /**
   * Flag for invite valid.
   */
  const INVITE_VALID = 1;

  /**
   * Flag for invite withdrawn.
   */
  const INVITE_WITHDRAWN = 2;

  /**
   * Flag for invite used.
   */
  const INVITE_USED = 3;

  /**
   * Flag for invite expired.
   */
  const INVITE_EXPIRED = 4;

  /**
   * Flag for invite code.
   */
  const INVITE_SESSION_CODE = 'invite_code';

}

Members

Namesort descending Modifiers Type Description Overrides
InviteConstants::INVITE_EXPIRED constant Flag for invite expired.
InviteConstants::INVITE_SESSION_CODE constant Flag for invite code.
InviteConstants::INVITE_USED constant Flag for invite used.
InviteConstants::INVITE_VALID constant Flag for invite valid.
InviteConstants::INVITE_WITHDRAWN constant Flag for invite withdrawn.