Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

Search.php

Same filename in this branch
  1. 11.1.x core/lib/Drupal/Core/Render/Element/Search.php
  2. 11.1.x core/modules/search/src/Plugin/views/argument/Search.php
  3. 11.1.x core/modules/search/src/Plugin/views/filter/Search.php

Namespace

Drupal\search\Attribute

File

core/modules/search/src/Attribute/Search.php

View source
<?php

namespace Drupal\search\Attribute;

use Drupal\Component\Plugin\Attribute\Plugin;
use Drupal\Core\StringTranslation\TranslatableMarkup;

/**
 * Defines a Search type attribute for plugin discovery.
 *
 * Search classes define search types for the core Search module. Each search
 * type can be used to create search pages from the Search settings page.
 *
 * @see SearchPluginBase
 *
 * @ingroup search
 */
class Search extends Plugin {
    
    /**
     * Constructs a Search attribute.
     *
     * @param string $id
     *   The plugin ID.
     * @param \Drupal\Core\StringTranslation\TranslatableMarkup|null $title
     *   The title for the search page tab.
     * @param bool $use_admin_theme
     *   Whether search results should be displayed in admin theme or not.
     * @param class-string|null $deriver
     *   (optional) The deriver class.
     */
    public function __construct(string $id, ?TranslatableMarkup $title = NULL, bool $use_admin_theme = FALSE, ?string $deriver = NULL) {
    }

}

Classes

Title Deprecated Summary
Search Defines a Search type attribute for plugin discovery.
RSS feed
Powered by Drupal