You are here

public function SamlSPController::idpList in SAML Service Provider 7.8

Returns a list of the IDPs.

Return value

array A simple renderable array.

1 string reference to 'SamlSPController::idpList'
saml_sp.routing.yml in ./saml_sp.routing.yml
saml_sp.routing.yml

File

src/Controller/SamlSPController.php, line 22
Contains \Drupal\samlsp\Controller\SamlSPController.

Class

SamlSPController
Provides route responses for the SAML SP module

Namespace

Drupal\saml_sp\Controller

Code

public function idpList() {
  $element = array(
    '#markup' => 'Hello, world',
  );
  return $element;
}