RecentlyReadTypeInterface.php in Recently Read 8
Namespace
Drupal\recently_read\EntityFile
src/Entity/RecentlyReadTypeInterface.phpView 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
Name | Description |
---|---|
RecentlyReadTypeInterface | Provides an interface for defining Recently read type entities. |