getParam() 공개 메소드

Returns the named parameter for the current auth driver.
public getParam ( string $param ) : string
$param string The parameter to fetch.
리턴 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
 /**
  */
 public function getParam($param)
 {
     return $this->_base->getParam($param);
 }