You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 6, 2022. It is now read-only.
I want to submit a nice request ( i think )
For now in methods we have:
GET POST etc... i want to be added one more "XHR" or "Ajax" and this one can be accepted only ajax requests.
Now my controllers with ajax must be like this:
if(parent::is_ajax()) {
//my code
}
is_ajax function is:
public function is_ajax() {
return (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && !empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest');
}