PluginProbe
Admin Options Pages / trunk
Admin Options Pages vtrunk
trunk 0.0.8 0.5.0 0.7.0 0.9.0 0.9.1 0.9.2 0.9.3 0.9.4 0.9.5 0.9.6 0.9.7 0.9.8 0.9.9
admin-options-pages / admin-options-pages.php

admin-options-pages.php in Admin Options Pages trunk, at admin-options-pages.php

28 lines 601 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Plugin Name: Admin Options Pages
5 * Plugin URI: https://adminoptionspages.com
6 * Description: Create and edit your own options pages with ease.
7 * Version: 0.9.9
8 * Author: Johannes van Poelgeest
9 * Author URI: https://poolghost.com
10 * Requires PHP: 8.0
11 * Tested up to: 7.0.4
12 * Text Domain: admin-options-pages
13 * License: GPL-2.0+
14 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
15 */
16
17 if (!defined('WPINC')) {
18 die;
19 }
20
21 if (!is_admin()) {
22 return;
23 }
24
25 require 'vendor/autoload.php';
26
27 include plugin_dir_path(__FILE__) . 'bootstrap/bootstrap.php';
28