Download .zip |
Info | Documentation | View files (28) | Download .zip | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2017-10-15 (1 month ago) | Not yet rated by the users | Total: 1 This week: 1 | All time: 9,096 This week: 562 |
Version | License | PHP version | Categories | |||
wp_menu 1.0 | Custom (specified... | 5 | PHP 5, Blogs |
Description | Author | |
This class can add menu or submenu page in WordPress. |
Add menu or submenu page in WordPress.
The preferred way to install this extension is through composer.
To install PHP Wordpress Menu library, simply:
$ composer require Josantonius/WP_Menu
The previous command will only install the necessary files, if you prefer to download the entire source code (including tests, vendor folder, exceptions not used, docs...) you can use:
$ composer require Josantonius/WP_Menu --prefer-source
Or you can also clone the complete repository with Git:
$ git clone https://github.com/Josantonius/WP_Menu.git
This library is supported by PHP versions 5.6 or higher and is compatible with HHVM versions 3.0 or higher.
To use this library in HHVM (HipHop Virtual Machine) you will have to activate the scalar types. Add the following line "hhvm.php7.scalar_types = true" in your "/etc/hhvm/php.ini".
To use this class, simply:
<?php
require __DIR__ . '/vendor/autoload.php';
use Josantonius\WP_Menu\WP_Menu;
Available methods in this library:
Add WordPress menu/submenu.
| Atttribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $type | 'menu' or 'submenu' | string | Yes | | --- | Atttribute | key | Description | Type | Required | Default | --- | --- | --- | --- | --- | --- | | $data | | Settings | array | Yes | | | | name | Menu/Submenu name | string | Yes | | | | slug | Menu/Submenu slug | string | Yes | | | | title | Menu/Submenu title | string | No | $data['name'] | | | capability | Capability required | string | No | 'manage_options' | | | icon_url | Only for menus - The URL to the icon to be used for this menu. Pass a base64-encoded SVG using a data URI, which will be colored to match the color scheme. This should begin with 'data:image/svg+xml;base64,'. Pass the name of a Dashicons helper class to use a font icon, e.g. 'dashicons-chart-pie'. Pass 'none' to leave div.wp-menu-image empty so an icon can be added via CSS. | string | No | '' | | | position | Only for menus - The position in the menu order this one should appear. | int | No | null | | |parent | Only for submenus - The slug name for the parent menu | string | Yes | | --- | Atttribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $function | Function to be called to output | callable | No | false | --- | Atttribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $styles | Function to be called to load page styles | callable | No | false | --- | Atttribute | Description | Type | Required | Default | --- | --- | --- | --- | --- | | $scripts | Function to be called to load page scripts | callable | No | false |
@return ? Boolean
$params = [
'slug' => 'searchinside-options',
'name' => __('Search Inside', 'search-iniside'),
'title' => __('Search Inside', 'search-iniside'),
'capability' => 'manage_options',
'icon_url' => '//searchinside-menu-admin.png',
'position' => 25,
];
Add menu without associated method.
WP_Menu::add(
'menu',
$params
);
Add menu with associated method for output.
WP_Menu::add(
'menu',
$params,
[$this, 'runPage']
);
Add menu with associated methods for output and styles.
WP_Menu::add(
'menu',
$params,
[$instance1, 'runPage'],
[$instance3, 'load_styles']
);
Add menu with associated methods for output, styles and scripts.
WP_Menu::add(
'menu',
$params,
[$instance1, 'runPage'],
[$instance3, 'load_styles'],
[$instance3, 'load_scripts']
);
Add menu with associated methods for output and scripts.
WP_Menu::add(
'menu',
$params,
[$instance1, 'runPage'],
false,
[$instance3, 'load_scripts']
);
$params = [
'slug' => 'searchinside-options',
'parent' => 'searchinside-options',
'name' => __('Options', 'search-iniside'),
'title' => __('Options', 'search-iniside'),
'capability' => 'manage_options',
];
Add submenu without associated method:
WP_Menu::add(
'submenu',
$params
);
Add submenu with associated method for output.
WP_Menu::add(
'submenu',
$params,
[$this, 'runPage']
);
Add submenu with associated methods for output and styles.
WP_Menu::add(
'submenu',
$params,
[$instance1, 'runPage'],
[$instance3, 'load_styles']
);
Add submenu with associated methods for output, styles and scripts.
WP_Menu::add(
'submenu',
$params,
[$instance1, 'runPage'],
[$instance3, 'load_styles'],
[$instance3, 'load_scripts']
);
Add submenu with associated method for output and scripts.
WP_Menu::add(
'submenu',
$params,
[$instance1, 'runPage'],
false,
[$instance3, 'load_scripts']
);
class SampleClass {
public function __construct() {
add_action('wp_menu/pre_add_menu_page', [$this, 'beforeAddMenu']);
add_action('wp_menu/after_add_menu_page', [$this, 'afterAddMenu']);
add_action('wp_menu/pre_add_submenu_page', [$this, 'beforeAddSubmenu']);
add_action('wp_menu/after_add_submenu_page', [$this, 'afterAddSubmenu']);
}
public function runPage() {
echo 'Response from runPage method';
}
public function addStyles() {
echo 'Response from addStyles method';
}
public function addScripts() {
echo 'Response from addScripts method';
}
public function beforeAddMenu() {
echo 'Response from wp_menu/pre_add_menu_page action';
}
public function afterAddMenu($hook_suffix) {
echo 'Response from wp_menu/after_add_menu_page action';
echo 'Hook suffix: ' . $hook_suffix;
}
public function beforeAddSubmenu() {
echo 'Response from wp_menu/pre_add_submenu_page action';
}
public function afterAddSubmenu($hook_suffix) {
echo 'Response from wp_menu/after_add_submenu_page action';
echo 'Hook suffix: ' . $hook_suffix;
}
}
$SampleClass = new SampleClass;
/
* Add menu
*/
$params = [
'slug' => 'plugin-options',
'name' => __('Plugin Name', 'plugin-slug'),
'title' => __('Plugin Title', 'plugin-slug'),
'capability' => 'manage_options',
'icon_url' => '//searchinside-menu-admin.png',
'position' => 25,
];
WP_Menu::add(
'menu',
$params,
[$SampleClass, 'runPage'],
[$SampleClass, 'addStyles'],
[$SampleClass, 'addScripts']
);
/
* Add submenu
*/
$params = [
'slug' => 'sub-plugin-options',
'parent' => 'plugin-options',
'name' => __('Plugin Name', 'plugin-slug'),
'title' => __('Plugin Title', 'plugin-slug'),
'capability' => 'manage_options',
];
WP_Menu::add(
'submenu',
$params,
[$SampleClass, 'runPage'],
[$SampleClass, 'addStyles'],
[$SampleClass, 'addScripts']
);
# When do_action('admin_menu');
// Response from wp_menu/pre_add_menu_page action
// Response from wp_menu/pre_add_submenu_page action
// Response from wp_menu/after_add_menu_page action
// Response from wp_menu/after_add_submenu_page action
// Hook suffix: load-toplevel_page_plugin-options
// Hook suffix: plugin-name_page_sub-plugin-options
# When do_action('toplevel_page_plugin-options');
// Executed only if access the page associated with this menu.
// Response from runPage method
# When do_action('plugin-name_page_sub-plugin-options');
// Executed only if access the page associated with this submenu.
// Response from runPage method
# When do_action('load-toplevel_page_plugin-options');
// Executed only if access the page associated with this menu.
// Response from addStyles method
// Response from addScripts method
# When do_action('load-plugin-name_page_sub-plugin-options');
// Executed only if access the page associated with this submenu.
// Response from addStyles method
// Response from addScripts method
| Action | Description | Parameters | --- | --- | --- | | wp_menu/pre_add_menu_page | Before adding menu. | | wp_menu/after_add_menu_page | After adding menu. | $page Resulting page's hook_suffix, or false. | wp_menu/pre_add_submenu_page | Before adding submenu. | | wp_menu/after_add_submenu_page | After adding submenu. | $page Resulting page's hook_suffix, or false.
To run tests simply:
$ git clone https://github.com/Josantonius/WP_Menu.git
$ cd WP_Menu
$ bash bin/install-wp-tests.sh wordpress_test root '' localhost latest
$ phpunit
This is intended for large and long-lived objects.
All files in this repository were created and uploaded automatically with Reposgit Creator.
This project is licensed under MIT license. See the LICENSE file for more info.
2017 Josantonius, josantonius.com
If you find it useful, let me know :wink:
Files |
File | Role | Description | ||
---|---|---|---|---|
bin (1 file) | ||||
src (1 file, 1 directory) | ||||
tests (2 files, 1 directory) | ||||
vendor (1 file, 1 directory) | ||||
.editorconfig | Data | Auxiliary data | ||
.travis.yml | Data | Auxiliary data | ||
CHANGELOG.md | Data | Auxiliary data | ||
composer.json | Data | Auxiliary data | ||
CONDUCT.md | Data | Auxiliary data | ||
contributors.txt | Doc. | Documentation | ||
LICENSE | Lic. | License text | ||
phpunit.xml.dist | Data | Auxiliary data | ||
README-ES.md | Doc. | Documentation | ||
README.md | Doc. | Documentation | ||
_config.yml | Data | Auxiliary data |
Files | / | tests |
File | Role | Description | ||
---|---|---|---|---|
WP_Menu (1 directory) | ||||
bootstrap.php | Example | Example script | ||
sample-plugin.php | Class | Class source |
Files | / | tests | / | WP_Menu | / | Test |
File | Role | Description |
---|---|---|
FrontEndTest.php | Class | Class source |
MenuTest.php | Class | Class source |
SubMenuTest.php | Class | Class source |
Files | / | vendor | / | composer |
File | Role | Description |
---|---|---|
autoload_classmap.php | Aux. | Auxiliary script |
autoload_namespaces.php | Aux. | Auxiliary script |
autoload_psr4.php | Aux. | Auxiliary script |
autoload_real.php | Class | Class source |
autoload_static.php | Class | Class source |
ClassLoader.php | Class | Class source |
installed.json | Data | Auxiliary data |
LICENSE | Lic. | License text |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.