You are here

GroupInterface.php in RNG - Events and Registrations 8.2

Same filename and directory in other branches
  1. 3.x src/Entity/GroupInterface.php

Namespace

Drupal\rng\Entity

File

src/Entity/GroupInterface.php
View source
<?php

namespace Drupal\rng\Entity;

use Drupal\Core\Entity\ContentEntityInterface;

/**
 * Provides an interface defining a registration group entity.
 */
interface GroupInterface extends ContentEntityInterface {

  /**
   * Get associated event.
   *
   * @return \Drupal\Core\Entity\ContentEntityInterface|null
   *   An entity, or NULL if the event does not exist.
   */
  public function getEvent();

  /**
   * Set associated event.
   *
   * @param \Drupal\Core\Entity\ContentEntityInterface $entity
   *
   * @return \Drupal\rng\Entity\RegistrationInterface
   *   Returns group for chaining.
   */
  public function setEvent(ContentEntityInterface $entity);

  /**
   * Determine if a module created the group.
   *
   * @return bool
   *   Whether the group is user created.
   */
  public function isUserGenerated();

  /**
   * Get which module created the group.
   *
   * @return string
   *   Name of a module.
   */
  public function getSource();

  /**
   * Set which module created this group.
   *
   * @param string $module
   *   Name of a module.
   *
   * @return \Drupal\rng\Entity\GroupInterface
   *   Returns group for chaining.
   */
  public function setSource($module);

  /**
   * Returns the description.
   *
   * @return string
   *   Description of the registration group.
   */
  public function getDescription();

  /**
   * Sets the description.
   *
   * @param string $description
   *   The description.
   *
   * @return \Drupal\rng\Entity\GroupInterface
   *   Returns group for chaining.
   */
  public function setDescription($description);

  /**
   * Get required groups.
   *
   * Groups required for this group to be added to a registration.
   *
   * @return \Drupal\rng\Entity\GroupInterface[]
   *   Groups required for this group.
   */
  public function getDependentGroups();

  /**
   * Get conflicting groups.
   *
   * Groups which cannot exist on a registration for this for this group to be
   * added.
   *
   * @return \Drupal\rng\Entity\GroupInterface[]
   *   Groups that conflict with this group.
   */
  public function getConflictingGroups();

}

Interfaces

Namesort descending Description
GroupInterface Provides an interface defining a registration group entity.