PluginProbe
GD Security Headers / 1.0
GD Security Headers v1.0
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 1.0, at core/version.php

34 lines 803 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')) exit;
4
5 class gdsih_core_info {
6 public $name = 'GD Security Headers';
7 public $code = 'gd-security-headers';
8
9 public $version = '1.0';
10 public $codename = '';
11 public $build = 15;
12 public $edition = 'pro';
13 public $status = 'stable';
14 public $updated = '2019.03.26';
15 public $url = 'https://plugins.dev4press.com/gd-security-headers/';
16 public $author_name = 'Milan Petrovic';
17 public $author_url = 'https://www.dev4press.com/';
18 public $released = '2019.03.26';
19
20 public $php = '5.6';
21 public $mysql = '5.1';
22 public $wordpress = '4.5';
23
24 public $install = false;
25 public $update = false;
26 public $previous = 0;
27
28 function __construct() { }
29
30 public function to_array() {
31 return (array)$this;
32 }
33 }
34