SearchPageListBuilder::submitForm

public SearchPageListBuilder::submitForm(array &$form, FormStateInterface $form_state) Form submission handler. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Overrides DraggableListBuilder::submitForm File core/modules/search/src/SearchPageListBuilder.php, line 326 Class SearchPageListBuilder Defines a class to build a listing of search page entities. Namespace Drup

SearchPageListBuilder::submitAddSearchPage

public SearchPageListBuilder::submitAddSearchPage(array &$form, FormStateInterface $form_state) Form submission handler for adding a new search page. File core/modules/search/src/SearchPageListBuilder.php, line 369 Class SearchPageListBuilder Defines a class to build a listing of search page entities. Namespace Drupal\search Code public function submitAddSearchPage(array &$form, FormStateInterface $form_state) { $form_state->setRedirect( 'search.add_type', array('sear

SearchPageListBuilder::searchAdminReindexSubmit

public SearchPageListBuilder::searchAdminReindexSubmit(array &$form, FormStateInterface $form_state) Form submission handler for the reindex button on the search admin settings form. File core/modules/search/src/SearchPageListBuilder.php, line 352 Class SearchPageListBuilder Defines a class to build a listing of search page entities. Namespace Drupal\search Code public function searchAdminReindexSubmit(array &$form, FormStateInterface $form_state) { // Send the user to the co

SearchPageListBuilder::getEditableConfigNames

protected SearchPageListBuilder::getEditableConfigNames() Gets the configuration names that will be editable. Return value array An array of configuration object names that are editable if called in conjunction with the trait's config() method. Overrides ConfigFormBaseTrait::getEditableConfigNames File core/modules/search/src/SearchPageListBuilder.php, line 85 Class SearchPageListBuilder Defines a class to build a listing of search page entities. Namespace Drupal\search Code protected

SearchPageListBuilder::getFormId

public SearchPageListBuilder::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides FormInterface::getFormId File core/modules/search/src/SearchPageListBuilder.php, line 78 Class SearchPageListBuilder Defines a class to build a listing of search page entities. Namespace Drupal\search Code public function getFormId() { return 'search_admin_settings'; }

SearchPageListBuilder::buildRow

public SearchPageListBuilder::buildRow(EntityInterface $entity) Builds a row for an entity in the entity listing. Parameters \Drupal\Core\Entity\EntityInterface $entity: The entity for this row of the list. Return value array A render array structure of fields for this entity. Overrides DraggableListBuilder::buildRow See also \Drupal\Core\Entity\EntityListBuilder::render() File core/modules/search/src/SearchPageListBuilder.php, line 117 Class SearchPageListBuilder Defines a class to bui

SearchPageListBuilder::createInstance

public static SearchPageListBuilder::createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) Instantiates a new instance of this entity handler. This is a factory method that returns a new instance of this object. The factory should pass any needed dependencies into the constructor of this object, but not the container itself. Every call to this method must return a new instance of this object; that is, it may not implement a singleton. Parameters \Symfony\Component\Dep

SearchPageListBuilder::getDefaultOperations

public SearchPageListBuilder::getDefaultOperations(EntityInterface $entity) Gets this list's default operations. Parameters \Drupal\Core\Entity\EntityInterface $entity: The entity the operations are for. Return value array The array structure is identical to the return value of self::getOperations(). Overrides ConfigEntityListBuilder::getDefaultOperations File core/modules/search/src/SearchPageListBuilder.php, line 296 Class SearchPageListBuilder Defines a class to build a listing of sea

SearchPageListBuilder

Defines a class to build a listing of search page entities. Hierarchy class \Drupal\Core\Entity\EntityHandlerBase uses DependencySerializationTrait, StringTranslationTraitclass \Drupal\Core\Entity\EntityListBuilder implements EntityHandlerInterface, EntityListBuilderInterfaceclass \Drupal\Core\Config\Entity\ConfigEntityListBuilderclass \Drupal\Core\Config\Entity\DraggableListBuilder implements FormInterfaceclass \Drupal\search\SearchPageListBuilder implements FormInterface uses ConfigFormBaseTr

SearchPageListBuilder::$searchManager

The search manager. Type: \Drupal\search\SearchPluginManager File core/modules/search/src/SearchPageListBuilder.php, line 43 Class SearchPageListBuilder Defines a class to build a listing of search page entities. Namespace Drupal\search Code protected $searchManager;