Mercurial > hg > isophonics-drupal-site
comparison core/modules/search/src/Plugin/ConfigurableSearchPluginInterface.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children | af1871eacc83 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
1 <?php | |
2 | |
3 namespace Drupal\search\Plugin; | |
4 | |
5 use Drupal\Component\Plugin\ConfigurablePluginInterface; | |
6 use Drupal\Core\Plugin\PluginFormInterface; | |
7 | |
8 /** | |
9 * Provides an interface for a configurable Search plugin. | |
10 */ | |
11 interface ConfigurableSearchPluginInterface extends ConfigurablePluginInterface, PluginFormInterface, SearchInterface { | |
12 | |
13 /** | |
14 * Sets the ID for the search page using this plugin. | |
15 * | |
16 * @param string $search_page_id | |
17 * The search page ID. | |
18 * | |
19 * @return static | |
20 */ | |
21 public function setSearchPageId($search_page_id); | |
22 | |
23 } |