You are here

PagererStyleManagerInterface.php in Pagerer 8.2

Same filename and directory in other branches
  1. 8 src/Plugin/PagererStyleManagerInterface.php

File

src/Plugin/PagererStyleManagerInterface.php
View source
<?php

namespace Drupal\pagerer\Plugin;


/**
 * Provides an interface for the Pagerer style plugins manager.
 */
interface PagererStyleManagerInterface {

  /**
   * Returns a list of Pagerer style plugins.
   *
   * @param string $style_type
   *   The style type for which to build the list {base|composite}.
   *
   * @return array
   *   An associative array of plugins id => short_title
   */
  public function getPluginOptions($style_type);

}

Interfaces

Namesort descending Description
PagererStyleManagerInterface Provides an interface for the Pagerer style plugins manager.