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