SamlSPController.php in SAML Service Provider 7.8
Same filename and directory in other branches
Contains \Drupal\samlsp\Controller\SamlSPController.
Namespace
Drupal\saml_sp\ControllerFile
src/Controller/SamlSPController.phpView source
<?php
/**
* @file
* Contains \Drupal\samlsp\Controller\SamlSPController.
*/
namespace Drupal\saml_sp\Controller;
use Drupal\Core\Controller\ControllerBase;
/**
* Provides route responses for the SAML SP module
*/
class SamlSPController extends ControllerBase {
/**
* Returns a list of the IDPs.
*
* @return array
* A simple renderable array.
*/
public function idpList() {
$element = array(
'#markup' => 'Hello, world',
);
return $element;
}
}
Classes
Name | Description |
---|---|
SamlSPController | Provides route responses for the SAML SP module |