You are here

ViewsAddButtonInterface.php in Views Add Button 2.0.x

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

File

src/ViewsAddButtonInterface.php
View source
<?php

namespace Drupal\views_add_button;


/**
 * An interface for all ViewsAddButton type plugins.
 */
interface ViewsAddButtonInterface {

  /**
   * Provide a description of the plugin.
   *
   * @return string
   *   A string description of the plugin.
   */
  public function description();

}

Interfaces

Namesort descending Description
ViewsAddButtonInterface An interface for all ViewsAddButton type plugins.