Activation
11 years ago
Config
11 years ago
Entities
11 years ago
Form
11 years ago
Views
11 years ago
Bootstrap.php
11 years ago
Helpers.php
11 years ago
NestedPages.php
11 years ago
Redirects.php
11 years ago
NestedPages.php
19 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Static Wrapper for Bootstrap Class |
| 4 | * Prevents T_STRING error when checking for 5.3.2 |
| 5 | */ |
| 6 | class NestedPages { |
| 7 | |
| 8 | public static function init() |
| 9 | { |
| 10 | // dev/live |
| 11 | global $np_env; |
| 12 | $np_env = 'live'; |
| 13 | |
| 14 | global $np_version; |
| 15 | $np_version = '1.3.4'; |
| 16 | |
| 17 | if ( is_admin() ) $app = new NestedPages\Bootstrap; |
| 18 | } |
| 19 | } |