isAjax() public static method

Verify is the access is from ajax.
public static isAjax ( ) : boolean
return boolean
コード例 #1
0
ファイル: Controller.php プロジェクト: voodoophp/voodoo
 /**
  * CHeck request if it's an ajax request
  * @return bool
  */
 public function isAjax()
 {
     return Http\Request::isAjax();
 }