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 / forms / about.php

about.php in GD Security Headers trunk, at forms/about.php

18 lines 418 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 $_panel = gdsih_admin()->panel === false ? 'whatsnew' : gdsih_admin()->panel;
8
9 if ( ! in_array( $_panel, array( 'changelog', 'whatsnew', 'info', 'dev4press' ) ) ) {
10 $_panel = 'whatsnew';
11 }
12
13 include( GDSIH_PATH . 'forms/about/header.php' );
14
15 include( GDSIH_PATH . 'forms/about/' . $_panel . '.php' );
16
17 include( GDSIH_PATH . 'forms/about/footer.php' );
18