コード例 #1
0
ファイル: Shibboleth.php プロジェクト: htw-pk15/vufind
 /**
  * Constructor
  *
  * @param Request $request Request object
  */
 public function __construct(Request $request)
 {
     parent::__construct($request);
     $this->aliases = ['idpentityid' => 'Shib-Identity-Provider'];
     $this->serverParamDelimiter = ';';
     $this->serverParamEscape = '\\';
 }
コード例 #2
0
ファイル: Shibboleth.php プロジェクト: grharry/vufind
 /**
  * Constructor
  *
  * @param Request             $request Request object
  * @param \Zend\Config\Config $config  VuFind configuration
  */
 public function __construct(Request $request, $config)
 {
     parent::__construct($request);
     $this->idpServerParam = isset($config->Shibboleth->idpserverparam) ? $config->Shibboleth->idpserverparam : ShibbolethAuth::DEFAULT_IDPSERVERPARAM;
     $this->aliases = ['idpentityid' => $this->idpServerParam];
     $this->serverParamDelimiter = ';';
     $this->serverParamEscape = '\\';
 }