PluginProbe
SweepPress: Website Cleanup and Optimization / 3.2
SweepPress: Website Cleanup and Optimization v3.2
trunk 1.1 1.2 1.3 1.4 1.4.1 1.5 1.6 1.7 1.8 2.0 2.1 2.1.1 2.2 2.3 2.3.1 2.4 2.4.1 2.4.2 2.5 2.6 3.0 3.1 3.1.1 3.2 All 39 releases
sweeppress / core / basic / Information.php

Information.php in SweepPress: Website Cleanup and Optimization 3.2, at core/basic/Information.php

21 lines 426 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Dev4Press\Plugin\SweepPress\Basic;
4
5 use Dev4Press\v49\Core\Plugins\Information as BaseInformation;
6
7 if ( ! defined( 'ABSPATH' ) ) {
8 exit;
9 }
10
11 class Information extends BaseInformation {
12 public $code = 'sweeppress';
13
14 public $version = '3.2';
15 public $build = 320;
16 public $updated = '2024.07.03';
17 public $status = 'stable';
18 public $edition = 'lite';
19 public $released = '2022.03.03';
20 }
21