You are here

CodemirrorModeInterface.php in The CodeMirror Editor 8

File

src/CodemirrorModeInterface.php
View source
<?php

namespace Drupal\codemirror_editor;


/**
 * Interface for CodeMirror mode plugins.
 */
interface CodemirrorModeInterface {

  /**
   * Returns the plugin label.
   *
   * @return string
   *   The label of the language mode.
   */
  public function label();

}

Interfaces

Namesort descending Description
CodemirrorModeInterface Interface for CodeMirror mode plugins.