* @param {String|Promise} title
* @param {String|Promise} question
* @param {String|Promise} saveLabel
+ * @param {String|Promise} noLabel
+ * @param {String|Promise} saveCallback
+ * @param {String|Promise} cancelCallback
+ * @returns {Promise}
+ */
+export const confirm = (title, question, saveLabel, noLabel, saveCallback, cancelCallback) =>
+ saveCancel(title, question, saveLabel, saveCallback, cancelCallback);
+
+/**
+ * The Save and Cancel dialogue helper.
+ *
+ * @param {String|Promise} title
+ * @param {String|Promise} question
+ * @param {String|Promise} saveLabel
* @param {String|Promise} saveCallback
* @param {String|Promise} cancelCallback
* @returns {Promise}
db/services.php. Note - this also requires $CFG->enable_read_only_sessions to be set to true.
* database_manager::check_database_schema() now checks for missing and extra indexes.
* Implement a more direct xsendfile_file() method for an alternative_file_system_class
+* The core/notification module has been updated to use AMD modals for its confirmation and alert dialogues.
+ The confirmation dialogue no longer has a configurable "No" button as per similar changes in MDL-59759.
+ This set of confirmation modals was unintentionally missed from that deprecation process.
=== 3.8 ===
* Add CLI option to notify all cron tasks to stop: admin/cli/cron.php --stop