BlockStyleInterface.php in Block Styles 2.x
Same filename and directory in other branches
Namespace
Drupal\block_styles\EntityFile
src/Entity/BlockStyleInterface.phpView 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
Name | Description |
---|---|
BlockStyleInterface | Interface for BlockStyles. |