PluginProbe
GD Security Headers / trunk
GD Security Headers vtrunk
trunk 1.0 1.1 1.1.1 1.2 1.3 1.4 1.5 1.6 1.6.1 1.7 1.7.1 1.8 1.9
gd-security-headers / core / version.php

version.php in GD Security Headers trunk, at core/version.php

36 lines 723 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit;
5 }
6
7 class gdsih_core_info {
8 public $name = 'GD Security Headers';
9 public $code = 'gd-security-headers';
10
11 public $version = '1.9';
12 public $build = 70;
13 public $edition = 'free';
14 public $status = 'stable';
15 public $updated = '2026.05.12';
16 public $url = 'https://plugins.dev4press.com/gd-security-headers/';
17 public $author_name = 'Milan Petrovic';
18 public $author_url = 'https://www.dev4press.com/';
19 public $released = '2019.03.26';
20
21 public $php = '7.4';
22 public $mysql = '5.1';
23 public $wordpress = '5.5';
24
25 public $install = false;
26 public $update = false;
27 public $previous = 0;
28
29 function __construct() {
30 }
31
32 public function to_array() {
33 return (array) $this;
34 }
35 }
36