assets
1 year ago
loader.php
1 year ago
ppf-admin.php
1 year ago
ppf-class.php
1 year ago
ppf-plugin-addon.php
1 year ago
ppf-plugin.php
1 year ago
ppf-settings.php
1 year ago
ppf-subclass.php
1 year ago
loader.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Plugin Foundation Loader |
| 5 | * |
| 6 | * Peter's Plugins Foundation 09 |
| 7 | * |
| 8 | * @package PPF09 |
| 9 | * @author Peter Raschendorfer |
| 10 | * @license GPL2+ |
| 11 | */ |
| 12 | |
| 13 | if ( ! defined( 'ABSPATH' ) ) { |
| 14 | exit; // Exit if accessed directly |
| 15 | } |
| 16 | |
| 17 | require_once ( __DIR__ . '/ppf-class.php' ); |
| 18 | require_once ( __DIR__ . '/ppf-subclass.php' ); |
| 19 | require_once ( __DIR__ . '/ppf-plugin.php' ); |
| 20 | require_once ( __DIR__ . '/ppf-settings.php' ); |
| 21 | require_once ( __DIR__ . '/ppf-admin.php' ); |
| 22 | require_once ( __DIR__ . '/ppf-plugin-addon.php' ); |