You are here

TocTypeInterface.php in TOC API 8

Namespace

Drupal\toc_api

File

src/TocTypeInterface.php
View 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

Namesort descending Description
TocTypeInterface Provides an interface defining a TOC type.