| 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 |
|