You are here

RecentlyReadTypeInterface.php in Recently Read 8

File

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

namespace Drupal\recently_read\Entity;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

/**
 * Provides an interface for defining Recently read type entities.
 */
interface RecentlyReadTypeInterface extends ConfigEntityInterface {

  /**
   * Return recently read types.
   *
   * @return string
   *   Name of recently read types.
   */
  public function getTypes();

}

Interfaces

Namesort descending Description
RecentlyReadTypeInterface Provides an interface for defining Recently read type entities.