update.php
56 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package VikAppointments - Libraries |
| 4 | * @subpackage html.license |
| 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 | 'vikappointments' |
| 18 | ); |
| 19 | |
| 20 | ?> |
| 21 | |
| 22 | <script> |
| 23 | (function($) { |
| 24 | 'use strict'; |
| 25 | |
| 26 | $(function() { |
| 27 | // retrieve VikAppointments update link |
| 28 | const link = $('#vikappointments-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> |