You are here

GroupBase.php in Lightgallery 8

File

src/Group/GroupBase.php
View source
<?php

namespace Drupal\lightgallery\Group;


/**
 * Group base.
 */
abstract class GroupBase implements GroupInterface {

  /**
   * {@inheritdoc}
   */
  public function isOpen() {
    return FALSE;
  }

  /**
   * {@inheritdoc}
   */
  public function getOpenValue() {
    return FALSE;
  }

}

Classes

Namesort descending Description
GroupBase Group base.