getParam() public method

Returns the named parameter for the current auth driver.
public getParam ( string $param ) : string
$param string The parameter to fetch.
return string The parameter's value, or null if it doesn't exist.
コード例 #1
0
ファイル: Application.php プロジェクト: horde/horde
 /**
  * Returns the named parameter for the current auth driver.
  *
  * @param string $param  The parameter to fetch.
  *
  * @return string  The parameter's value, or null if it doesn't exist.
  */
 public function getParam($param)
 {
     return $this->_base ? $this->_base->getParam($param) : parent::getParam($param);
 }
コード例 #2
0
ファイル: UsernameHook.php プロジェクト: horde/horde
 /**
  */
 public function getParam($param)
 {
     return $this->_base->getParam($param);
 }