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