redirectBack() 'default' => array('Director', 'redirectBack'), ); /** * @param RequestHandler $controller * @param Array $callbacks */ function __construct($callbacks = array()) { $this->callbacks = $callbacks; } /** * Out of the box, the handler "CurrentForm" value, which will return the rendered form. * Non-Ajax calls will redirect back. * * @param SS_HTTPRequest $request * @param array $extraCallbacks List of anonymous functions or callables returning either a string * or SS_HTTPResponse, keyed by their fragment identifier. The 'default' key can * be used as a fallback for non-ajax responses. * @return SS_HTTPResponse */ public function respond(SS_HTTPRequest $request, $extraCallbacks = array()) { // Prepare the default options and combine with the others $callbacks = array_merge( array_change_key_case($this->callbacks, CASE_LOWER), array_change_key_case($extraCallbacks, CASE_LOWER) ); if($fragment = $request->getHeader('X-Pjax')) { $fragment = strtolower($fragment); if(isset($callbacks[$fragment])) { return call_user_func($callbacks[$fragment]); } else { throw new SS_HTTPResponse_Exception("X-Pjax = '$fragment' not supported for this URL.", 400); } } else { if($request->isAjax()) throw new SS_HTTPResponse_Exception("Ajax requests to this URL require an X-Pjax header.", 400); return call_user_func($callbacks['default']); } } /** * @param String $fragment * @param Callable $callback */ public function setCallback($fragment, $callback) { $this->callbacks[$fragment] = $callback; } }