Triggered before an AJAX request is handled.
The event handler result does not affect the request handling process unless
an exception is thrown.
Usage example:
public function subscribeEvents()
{
Backend::$events->addEvent('cms:onBeforeHandleAjax', $this, 'before_handle_ajax');
}
public function before_handle_ajax($page)
{
// Do something
}