SearchRequirements.php
Namespace
Drupal\search\HookFile
-
core/
modules/ search/ src/ Hook/ SearchRequirements.php
View source
<?php
declare (strict_types=1);
namespace Drupal\search\Hook;
use Drupal\Core\Hook\Attribute\Hook;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\search\SearchPageRepositoryInterface;
/**
* Requirements for the Search module.
*/
class SearchRequirements {
use StringTranslationTrait;
public function __construct(SearchPageRepositoryInterface $searchPageRepository) {
}
/**
* Implements hook_runtime_requirements().
*
* For the Status Report, return information about search index status.
*/
public function runtime() : array {
$requirements = [];
$remaining = 0;
$total = 0;
foreach ($this->searchPageRepository
->getIndexableSearchPages() as $entity) {
$status = $entity->getPlugin()
->indexStatus();
$remaining += $status['remaining'];
$total += $status['total'];
}
$done = $total - $remaining;
// Use floor() to calculate the percentage, so if it is not quite 100%, it
// will show as 99%, to indicate "almost done".
$percent = $total > 0 ? floor(100 * $done / $total) : 100;
$requirements['search_status'] = [
'title' => $this->t('Search index progress'),
'value' => $this->t('@percent% (@remaining remaining)', [
'@percent' => $percent,
'@remaining' => $remaining,
]),
'severity' => REQUIREMENT_INFO,
];
return $requirements;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
SearchRequirements | Requirements for the Search module. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.