public function IndexStatusForm::setIndexTaskManager in Search API 8
Sets the index task manager.
Parameters
\Drupal\search_api\Task\IndexTaskManagerInterface $index_task_manager: The new index task manager.
Return value
$this
File
- src/
Form/ IndexStatusForm.php, line 70
Class
- IndexStatusForm
- Provides a form for indexing, clearing, etc., an index.
Namespace
Drupal\search_api\FormCode
public function setIndexTaskManager(IndexTaskManagerInterface $index_task_manager) {
$this->indexTaskManager = $index_task_manager;
return $this;
}