You are here

interface TagManagerInterface in Fences 8.2

Gathers and provides the tags that can be used to wrap fields.

Hierarchy

Expanded class hierarchy of TagManagerInterface

All classes that implement TagManagerInterface

1 file declares its use of TagManagerInterface
fences.module in ./fences.module
Alter wrapping markup of fields.

File

src/TagManagerInterface.php, line 8

Namespace

Drupal\fences
View source
interface TagManagerInterface {

  /**
   * The stored value representing "no markup".
   */
  const NO_MARKUP_VALUE = 'none';

  /**
   * Get the tags that can wrap fields.
   *
   * @return array
   *   An array of tags.
   */
  public function getTagOptions();

}

Members

Namesort descending Modifiers Type Description Overrides
TagManagerInterface::getTagOptions public function Get the tags that can wrap fields. 1
TagManagerInterface::NO_MARKUP_VALUE constant The stored value representing "no markup".