GroupInterface.php in Lightgallery 8
Namespace
Drupal\lightgallery\GroupFile
src/Group/GroupInterface.phpView source
<?php
namespace Drupal\lightgallery\Group;
/**
 * Group interface.
 */
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();
}Interfaces
| 
            Name | 
                  Description | 
|---|---|
| GroupInterface | Group interface. |