You are here

ClassyParagraphsStyleInterface.php in Classy paragraphs 8

File

src/ClassyParagraphsStyleInterface.php
View source
<?php

namespace Drupal\classy_paragraphs;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

/**
 * Provides an interface for defining Classy paragraphs style entities.
 */
interface ClassyParagraphsStyleInterface extends ConfigEntityInterface {

  /**
   * Returns text from the classes field.
   *
   * @return
   *   A string of classes.
   */
  public function getClasses();

}

Interfaces

Namesort descending Description
ClassyParagraphsStyleInterface Provides an interface for defining Classy paragraphs style entities.