TocTypeInterface.php in TOC API 8
Namespace
Drupal\toc_apiFile
src/TocTypeInterface.phpView source
<?php
namespace Drupal\toc_api;
/**
* Provides an interface defining a TOC type.
*/
interface TocTypeInterface {
/**
* Returns the TOC type options.
*
* @return array
* The table of contents options.
*/
public function getOptions();
}
Interfaces
Name | Description |
---|---|
TocTypeInterface | Provides an interface defining a TOC type. |