You are here

BlockStyleInterface.php in Block Styles 2.x

File

src/Entity/BlockStyleInterface.php
View source
<?php

namespace Drupal\block_styles\Entity;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

/**
 * Interface for BlockStyles.
 */
interface BlockStyleInterface extends ConfigEntityInterface {
  public function getTheme();
  public function getText();
  public function getClasses();
  public function getStyle();

}

Interfaces

Namesort descending Description
BlockStyleInterface Interface for BlockStyles.