This repository has been archived on 2025-01-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/core/modules/search/src/Plugin/ConfigurableSearchPluginInterface.php

23 lines
545 B
PHP

<?php
namespace Drupal\search\Plugin;
use Drupal\Component\Plugin\ConfigurablePluginInterface;
use Drupal\Core\Plugin\PluginFormInterface;
/**
* Provides an interface for a configurable Search plugin.
*/
interface ConfigurableSearchPluginInterface extends ConfigurablePluginInterface, PluginFormInterface, SearchInterface {
/**
* Sets the ID for the search page using this plugin.
*
* @param string $search_page_id
* The search page ID.
*
* @return static
*/
public function setSearchPageId($search_page_id);
}