PluginProbe
VikBooking Hotel Booking Engine & PMS / 1.8.6
VikBooking Hotel Booking Engine & PMS v1.8.6
1.8.15 1.8.14 1.8.13 1.8.12 1.8.11 1.8.10 1.8.9 1.8.6 1.8.7 1.8.8 trunk 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.7.2 1.7.3 All 36 releases
vikbooking / libraries / html / license / update.php

update.php in VikBooking Hotel Booking Engine & PMS 1.8.6, at libraries/html/license/update.php

56 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @package VikBooking - Libraries
4 * @subpackage html.update
5 * @author E4J s.r.l.
6 * @copyright Copyright (C) 2021 E4J s.r.l. All Rights Reserved.
7 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
8 * @link https://vikwp.com
9 */
10
11 // No direct access
12 defined('ABSPATH') or die('No script kiddies please!');
13
14 // define alert message
15 $__alert = __(
16 "Your PRO license has expired. If you proceed with the update, you'll lose access to the features unlocked by the PRO version. We strongly recommend updating the plugin only after renewing your license.\nWould you like to proceed anyway?",
17 'vikbooking'
18 );
19
20 ?>
21
22 <script>
23 (function($) {
24 'use strict';
25
26 $(function() {
27 // retrieve VikBooking update link
28 const link = $('#vikbooking-update a.update-link');
29
30 // define callback to invoke when the update button gets clicked
31 const implementor = (event) => {
32 // prevent default event
33 event.preventDefault();
34 event.stopPropagation();
35
36 // prompt alert message
37 const r = confirm(<?php echo json_encode($__alert); ?>);
38
39 if (r) {
40 // turn off click event
41 link.off('click', implementor);
42
43 setTimeout(() => {
44 // trigger click to auto-dispatch the update
45 link.trigger('click');
46 }, 32);
47 }
48
49 return false;
50 };
51
52 // override default click event
53 link.on('click', implementor);
54 });
55 })(jQuery);
56 </script>