protected function IndexForm::getSelectedClusterUrl in Elasticsearch Connector 8.5
Same name and namespace in other branches
- 8.7 src/Form/IndexForm.php \Drupal\elasticsearch_connector\Form\IndexForm::getSelectedClusterUrl()
- 8 src/Form/IndexForm.php \Drupal\elasticsearch_connector\Form\IndexForm::getSelectedClusterUrl()
- 8.2 src/Form/IndexForm.php \Drupal\elasticsearch_connector\Form\IndexForm::getSelectedClusterUrl()
- 8.6 src/Form/IndexForm.php \Drupal\elasticsearch_connector\Form\IndexForm::getSelectedClusterUrl()
Return url of the selected cluster.
Parameters
string $id: Cluster id.
Return value
string Cluster url.
File
- src/
Form/ IndexForm.php, line 141
Class
- IndexForm
- Form controller for node type forms.
Namespace
Drupal\elasticsearch_connector\FormCode
protected function getSelectedClusterUrl($id) {
$result = NULL;
$clusters = $this
->getAllClusters();
foreach ($clusters as $cluster) {
if ($cluster->cluster_id == $id) {
$result = $cluster->url;
}
}
return $result;
}