PluginProbe
AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress / 11.0.0
AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress v11.0.0
11.0.5 11.0.4 11.0.3 11.0.2 11.0.1 11.0.0 10.11.1 10.11.0 10.10.2 10.10.1 10.10.0 10.9.1 trunk 10.0.0 10.0.1 10.1.0 10.1.1 10.1.2 10.1.3 10.1.4 10.2.0 10.2.1 10.2.2 10.3.0 10.4.0 All 60 releases
acymailing / back / Controllers / UpdateController.php

UpdateController.php in AcyMailing – An Ultimate Newsletter Plugin and Marketing Automation Solution for WordPress 11.0.0, at back/Controllers/UpdateController.php

28 lines 665 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace AcyMailing\Controllers;
4
5 use AcyMailing\Helpers\HeaderHelper;
6 use AcyMailing\Core\AcymController;
7 use AcyMailing\Helpers\UpdatemeHelper;
8
9 class UpdateController extends AcymController
10 {
11 public function checkForNewVersion(): void
12 {
13 UpdatemeHelper::getLicenseInfo(true);
14 ob_start();
15 $headerHelper = new HeaderHelper();
16 $headerHelper->displayVersionArea(true);
17 $versionArea = ob_get_clean();
18
19 acym_sendAjaxResponse(
20 '',
21 [
22 'content' => $versionArea,
23 'lastcheck' => acym_date('now', 'ACYM_DATE_FORMAT_LC2'),
24 ]
25 );
26 }
27 }
28