Lines Matching refs:getOption
75 if ($this->getOption("samlValidate")) {
79 if ($this->getOption("debug")) {
95 $this->getOption('server'),
96 (int)$this->getOption('port'),
97 $this->getOption('rootcas'),
109 if ($this->getOption('cacert')) {
110 if (!io_saveFile($cas_cacert_file, $this->getOption('cacert'))) {
119 if ($this->getOption('handlelogoutrequest')) {
120 phpCAS::handleLogoutRequests(true, $this->getOption('handlelogoutrequestTrustedHosts'));
134 private function getOption($optionName): mixed function in auth_plugin_authssocas
182 if ($this->getOption('handlelogoutrequest')) {
203 …if (phpCAS::isAuthenticated() or ($this->getOption('autologin') and phpCAS::checkAuthentication())…
226 'uid' => $attributes[$this->getOption('uid_attribut')] ?? '',
227 'name' => $attributes[$this->getOption('name_attribut')] ?? '',
228 'mail' => $attributes[$this->getOption('mail_attribut')] ?? '',
250 …$real_client_ip = ($this->getOption('http_header_real_ip') ? ($_SERVER[$this->getOption('http_head…
280 $raw_groups = $attributes[$this->getOption('group_attribut')] ?: array();
283 …. implode(',', (array)$raw_groups) . "' - Group separator : '" . $this->getOption('group_attribut_…
284 if (!$this->getOption('group_attribut_separator')) {
296 $user_groups = explode($this->getOption('group_attribut_separator'), $raw_groups);