SearchPage.php
Same filename in this branch
Same filename in other branches
- 8.9.x core/modules/search/src/Entity/SearchPage.php
- 8.9.x core/modules/search/src/Plugin/migrate/source/d6/SearchPage.php
- 8.9.x core/modules/search/src/Plugin/migrate/source/d7/SearchPage.php
- 10 core/modules/search/src/Entity/SearchPage.php
- 10 core/modules/search/src/Plugin/migrate/source/d6/SearchPage.php
- 10 core/modules/search/src/Plugin/migrate/source/d7/SearchPage.php
- 11.x core/modules/search/src/Entity/SearchPage.php
- 11.x core/modules/search/src/Plugin/migrate/source/d6/SearchPage.php
- 11.x core/modules/search/src/Plugin/migrate/source/d7/SearchPage.php
Namespace
Drupal\search\Plugin\migrate\source\d6File
-
core/
modules/ search/ src/ Plugin/ migrate/ source/ d6/ SearchPage.php
View source
<?php
namespace Drupal\search\Plugin\migrate\source\d6;
use Drupal\migrate_drupal\Plugin\migrate\source\Variable;
/**
* Drupal 6 node search rankings for core modules source from database.
*
* For available configuration keys, refer to the parent classes.
*
* @see \Drupal\migrate_drupal\Plugin\migrate\source\Variable
* @see \Drupal\migrate\Plugin\migrate\source\SqlBase
* @see \Drupal\migrate\Plugin\migrate\source\SourcePluginBase
*
* @MigrateSource(
* id = "d6_search_page",
* source_module = "search"
* )
*/
class SearchPage extends Variable {
/**
* {@inheritdoc}
*/
protected function values() {
// Add a module key to identify the source search provider, node. This value
// is used in the EntitySearchPage destination plugin.
return array_merge([
'module' => 'node',
], parent::values());
}
/**
* {@inheritdoc}
*/
public function fields() {
return [
'module' => $this->t('The module providing a search page.'),
];
}
/**
* {@inheritdoc}
*/
public function getIds() {
$ids['module']['type'] = 'string';
return $ids;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
SearchPage | Drupal 6 node search rankings for core modules source from database. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.