public function CasRedirectData::getParameter in CAS 8
Same name and namespace in other branches
- 2.x src/CasRedirectData.php \Drupal\cas\CasRedirectData::getParameter()
Returns the redirect parameter specified by $key.
Parameters
string $key: Parameter to select.
Return value
mixed Value of the parameter.
File
- src/
CasRedirectData.php, line 100
Class
- CasRedirectData
- Class CasRedirectData.
Namespace
Drupal\casCode
public function getParameter($key) {
return isset($this->redirectParameters[$key]) ? $this->redirectParameters[$key] : NULL;
}