1 <?php
2 /**
3 * Admin Page Framework
4 *
5 * http://en.michaeluno.jp/admin-page-framework/
6 * Copyright (c) 2013-2014 Michael Uno; Licensed MIT
7 *
8 */
9
10 // If accessed from a browser, exit.
11 if ( php_sapi_name() !== 'cli' ) {
12 exit;
13 }
14
15 // For the minifier script.
16 if ( file_exists( dirname( dirname( __FILE__ ) ) . '/admin-page-framework.php' ) ) {
17 include_once( dirname( dirname( __FILE__ ) ) . '/admin-page-framework.php' );
18 }
19
20 if ( ! class_exists( 'AdminPageFramework_MinifiedVersionHeader' ) ) :
21 /**
22 * Provides header information of the framework for the minifed version.
23 *
24 * The minifier script will include this file ( but it does not include WordPress ) to use the reflection class to generate the header comment section.
25 */
26 final class AdminPageFramework_MinifiedVersionHeader extends AdminPageFramework_Registry_Base {
27
28 const Name = 'Admin Page Framework - Minified Version';
29 const Description = 'Generated by PHP Class Minifier';
30
31 }
32 endif;