SearchPageListBuilder::$entities

The entities being listed. Type: \Drupal\search\SearchPageInterface[] Overrides DraggableListBuilder::$entities File core/modules/search/src/SearchPageListBuilder.php, line 29 Class SearchPageListBuilder Defines a class to build a listing of search page entities. Namespace Drupal\search Code protected $entities = array();

SearchPageListBuilder::buildForm

public SearchPageListBuilder::buildForm(array $form, FormStateInterface $form_state) Form constructor. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value array The form structure. Overrides DraggableListBuilder::buildForm File core/modules/search/src/SearchPageListBuilder.php, line 161 Class SearchPageListBuilder Defines a class to build a listing of search page e

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;

SearchPageInterface::getWeight

public SearchPageInterface::getWeight() Returns the weight for the page. Return value int The page weight. File core/modules/search/src/SearchPageInterface.php, line 58 Class SearchPageInterface Provides an interface defining a search page entity. Namespace Drupal\search Code public function getWeight();

SearchPageInterface::getPath

public SearchPageInterface::getPath() Returns the path for the search. Return value string The part of the path for this search page that comes after 'search'. File core/modules/search/src/SearchPageInterface.php, line 50 Class SearchPageInterface Provides an interface defining a search page entity. Namespace Drupal\search Code public function getPath();

SearchPageInterface::isIndexable

public SearchPageInterface::isIndexable() Determines if this search page entity is indexable. Return value bool TRUE if this search page entity is indexable, FALSE otherwise. File core/modules/search/src/SearchPageInterface.php, line 42 Class SearchPageInterface Provides an interface defining a search page entity. Namespace Drupal\search Code public function isIndexable();

SearchPageInterface::isDefaultSearch

public SearchPageInterface::isDefaultSearch() Determines if this search page entity is currently the default search. Return value bool TRUE if this search page entity is the default search, FALSE otherwise. File core/modules/search/src/SearchPageInterface.php, line 34 Class SearchPageInterface Provides an interface defining a search page entity. Namespace Drupal\search Code public function isDefaultSearch();

SearchPageInterface

Provides an interface defining a search page entity. Hierarchy interface \Drupal\Core\Entity\EntityInterface; interface \Drupal\Core\Config\Entity\ThirdPartySettingsInterfaceinterface \Drupal\Core\Config\Entity\ConfigEntityInterfaceinterface \Drupal\search\SearchPageInterface File core/modules/search/src/SearchPageInterface.php, line 10 Namespace Drupal\search Members Name Modifiers Type Description AccessibleInterface::access public function Checks data value access.

SearchPageFormBase::submitForm

public SearchPageFormBase::submitForm(array &$form, FormStateInterface $form_state) This is the default entity object builder function. It is called before any other submit handler to build the new entity object to be used by the following submit handlers. At this point of the form workflow the entity is validated and the form state can be updated, this way the subsequently invoked handlers can retrieve a regular entity object to act on. Generally this method should not be overridden unles