Download the PHP package voceconnect/voce-settings-api without Composer
On this page you can find all versions of the php package voceconnect/voce-settings-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download voceconnect/voce-settings-api
More information about voceconnect/voce-settings-api
Files in voceconnect/voce-settings-api
Package voce-settings-api
Short Description A simplification of the core WordPress settings API
License GPLv2+
Informations about the package voce-settings-api
Voce Settings API
Contributors: prettyboymp, kevinlangleyjr, banderon, voceplatforms
Tags: settings, api
Requires at least: 3.3
Tested up to: 4.2.2
Stable tag: 0.5.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Description
A simplification of the core WordPress settings API
Installation
As theme or plugin dependency:
After dropping the plugin into the containing theme or plugin, add the following:
Usage
The is used as a singleton so you can add settings to pages that are created elsewhere just by using the same page_key. The singleton instance can be retreived by using and most methods can be chained to easily create multiple groups and setting fields per page.
Registering a Settings Page
Pages are registered through the method of the , which is accessed through the singleton instance of itself.
Parameters
- (string) - A string used at the top of the settings page
- (string) - A string used as the title of the page either in the admin menu or if specified, an admin submenu
- (string) - A unique string used as the page key for the settings page
- (string) - The capability level for users to be able to see and edit settings on the page
- (string) - Short description of the page
- (string) - Slug for parent page, leave empty to create new menu item
Registering a Settings Group
Groups are registered through the method of the class.
Parameters
- (string) - A string used at the top of the settings group
- (string) - A unique string used as the group key for the settings
- (string) - The capability level for users to be able to see and edit settings within the group
- (string) - Short description of the group
Registering a Setting Field
Setting fields are registered through the method of the class.
Parameters
- (string) - A string used within the label for the setting field
- (string) - A unique string used as the setting key
- (array) - Array of arugments for the setting
Getting a setting value
Using the method of the , you can retreive the value of a setting by passing in the setting key, group key, and optionally the default value to return if no value has been set yet.
Display Methods
- Default
Sanitization Methods
- Default
To enqueuing JS and/or CSS on settings pages
Changelog
Please refer to full changelog at https://github.com/voceconnect/voce-settings-api/releases.