You are here

ThemeHandlerInterface.php in Commerce Demo 8

File

src/ThemeHandlerInterface.php
View source
<?php

namespace Drupal\commerce_demo;


/**
 * Handles demo components required in specific themes.
 */
interface ThemeHandlerInterface {

  /**
   * Places blocks for the theme.
   *
   * @param string $theme
   *   The theme name.
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  public function placeBlocks($theme);

}

Interfaces

Namesort descending Description
ThemeHandlerInterface Handles demo components required in specific themes.