_remoteUrl = $remoteUrl; } // // Getters and Setters // /** * Get the remote url. * @return string */ function getRemoteUrl() { return $this->_remoteUrl; } // // Overridden methods from LinkActionRequest // /** * @see LinkActionRequest::getLocalizedOptions() */ function getLocalizedOptions() { $parentLocalizedOptions = parent::getLocalizedOptions(); // override the modalHandler option. $parentLocalizedOptions['modalHandler'] = '$.pkp.controllers.modal.RedirectConfirmationModalHandler'; $parentLocalizedOptions['remoteUrl'] = $this->getRemoteUrl(); return $parentLocalizedOptions; } } ?>