You are here

protected function IndexForm::getSelectedClusterUrl in Elasticsearch Connector 8

Same name and namespace in other branches
  1. 8.7 src/Form/IndexForm.php \Drupal\elasticsearch_connector\Form\IndexForm::getSelectedClusterUrl()
  2. 8.2 src/Form/IndexForm.php \Drupal\elasticsearch_connector\Form\IndexForm::getSelectedClusterUrl()
  3. 8.5 src/Form/IndexForm.php \Drupal\elasticsearch_connector\Form\IndexForm::getSelectedClusterUrl()
  4. 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.

1 call to IndexForm::getSelectedClusterUrl()
IndexForm::submit in src/Form/IndexForm.php

File

src/Form/IndexForm.php, line 114
Contains \Drupal\elasticsearch_connector\Form\IndexForm.

Class

IndexForm
Form controller for node type forms.

Namespace

Drupal\elasticsearch_connector\Form

Code

protected function getSelectedClusterUrl($id) {
  $result = NULL;
  $clusters = $this
    ->getAllClusters();
  foreach ($clusters as $cluster) {
    if ($cluster->cluster_id == $id) {
      $result = $cluster->url;
    }
  }
  return $result;
}