You are here

interface GroupInterface in Lightgallery 8

Group interface.

Hierarchy

Expanded class hierarchy of GroupInterface

All classes that implement GroupInterface

File

src/Group/GroupInterface.php, line 8

Namespace

Drupal\lightgallery\Group
View source
interface GroupInterface {

  /**
   * Returns name.
   */
  public function getName();

  /**
   * Returns title.
   */
  public function getTitle();

  /**
   * Boolean indicating if "details" have to be open.
   */
  public function isOpen();

  /**
   * Returns value where "open" property is dependent to.
   */
  public function getOpenValue();

}

Members

Namesort descending Modifiers Type Description Overrides
GroupInterface::getName public function Returns name. 7
GroupInterface::getOpenValue public function Returns value where "open" property is dependent to. 1
GroupInterface::getTitle public function Returns title. 7
GroupInterface::isOpen public function Boolean indicating if "details" have to be open. 1