2017 © Pedro Peláez
 

library wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

image

wordpress-phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  • Friday, July 27, 2018
  • by sethcarstens
  • Repository
  • 7 Watchers
  • 2 Stars
  • 291 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 5 Forks
  • 3 Open issues
  • 47 Versions
  • 12 % Grown

The README.md

WordPress Phoenix Options Panel

WordPress options builder class is a library that helps you setup theme or plugin options that store data in the database with just a few lines of code., (*1)

Updated in 5.0

  • Updated WordPress Coding Standards
  • Improved Composer configuration
  • Added support for the .editorconfig standard
  • Rewrote encryption on the Password field type to use OpenSSL instead of mcrypt
  • Removed the Markdown field type
  • Refactored library code

Builds protected by CircleCI: CircleCI, (*2)

Table of Contents

Installation

  1. Include in your plugin by creating or adding the following to your composer.json file in the root of the plugin json { "require": { "WordPress-Phoenix/wordpress-options-builder-class": "^5.0.0" } }
  2. Confirm that composer is installed in your development enviroment using which composer.
  3. Open CLI into your plugins root directory and run composer install.
  4. Confirm that it created the vendor folder in your plugin.
  5. In your plugins main file, near the code where you include other files place the following: php if ( file_exists( dirname( __FILE__ ) . 'vendor/autoload.php' ) ) { include_once dirname( __FILE__ ) . 'vendor/autoload.php'; }

Manual Installation

  1. Download the most updated copy of this repository from https://api.github.com/repos/WordPress-Phoenix/wordpress-options-builder-class/zipball
  2. Extract the zip file, and copy the PHP file into your plugin project.
  3. Include the src/class-wordpress-options-panels.php file in your plugin.

Upgrading to version 5.x

Version 5.0 is a major rewrite of the WordPress Phoenix Options Panel and there are a few required update steps., (*3)

  • If not using an autoloader, include src/class-wordpress-options-panels.php (instead of wpop-init.php)
  • Reference the \WPOP\V_5_0\* namespace instead of \WPOP\V_4_1\*
  • If you aren't using an autoloader, manually load the class files into memory: php \WPOP\V_5_0\WordPress_Options_Panels::load_files();
  • The Markdown field type has been removed; consider switching to include_partial and rendering the markdown through a PHP class of your choosing (WordPress Phoenix Options Panel version 4.x used erusev/parsedown)
  • Update your array of $args to new \WPOP\V_5_0\Page( $args, $fields ); to include an installed_dir_uri key and value, representing the public URL path to your installation of this library (required to load CSS and JS assets used to style the options panels)

Usage

The Versions

27/07 2018

dev-master

9999999-dev https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3 GPL-3.0-or-later

The Requires

 

The Development Requires

wordpress helper utility site-options

27/07 2018

4.1.7

4.1.7.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

The Development Requires

wordpress helper utility site-options

26/07 2018

dev-multiselect

dev-multiselect https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

The Development Requires

wordpress helper utility site-options

09/07 2018

v5.x-dev

5.9999999.9999999.9999999-dev https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

05/07 2018

dev-selectizejs

dev-selectizejs https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

03/07 2018

4.1.6

4.1.6.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

The Development Requires

wordpress helper utility site-options

03/07 2018

dev-Select-JS-broken

dev-Select-JS-broken https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

The Development Requires

wordpress helper utility site-options

03/07 2018

dev-phpcs-logging

dev-phpcs-logging https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

23/05 2018

4.1.5

4.1.5.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

23/05 2018

4.1.4

4.1.4.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

23/05 2018

4.1.3

4.1.3.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

15/05 2018

4.1.2

4.1.2.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

08/05 2018

4.1.1

4.1.1.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

07/05 2018

4.1

4.1.0.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

01/05 2018

dev-version-4-1

dev-version-4-1 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

23/04 2018

4.0.0

4.0.0.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

20/03 2018

dev-safe-place-to-back-to

dev-safe-place-to-back-to https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

15/03 2018

dev-fix-phpcs-3.1.4

dev-fix-phpcs-3.1.4 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

14/03 2018

dev-compare-pre

dev-compare-pre https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

14/03 2018

3.1.2

3.1.2.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

06/02 2018

3.1.1

3.1.1.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

06/02 2018

dev-was-this-working-maybe

dev-was-this-working-maybe https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-3.0-or-later

The Requires

 

wordpress helper utility site-options

29/01 2018

3.1.0

3.1.0.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

11/01 2018

dev-fix-phpcs-2.8

dev-fix-phpcs-2.8 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

11/01 2018

2.9.2

2.9.2.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

11/01 2018

2.9.1

2.9.1.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

10/01 2018

2.9.0

2.9.0.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

08/01 2018

v3.x-dev

3.9999999.9999999.9999999-dev https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

12/12 2017

2.8.0

2.8.0.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

04/12 2017

2.7.0

2.7.0.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

22/11 2017

2.6.0

2.6.0.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

22/11 2017

2.5.0

2.5.0.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

21/11 2017

2.4.0

2.4.0.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

21/11 2017

2.3.0

2.3.0.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

21/11 2017

2.2.0

2.2.0.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

14/11 2017

2.1.0

2.1.0.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

13/11 2017

2.0.0

2.0.0.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

13/11 2017

2.0.0-RC1

2.0.0.0-RC1 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

02/11 2017

2.0.0-beta-2

2.0.0.0-beta2 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

02/11 2017

2.0.0-beta-1

2.0.0.0-beta1 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

The Requires

 

wordpress helper utility site-options

16/11 2016

1.5.3

1.5.3.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

wordpress helper utility site-options

16/11 2016

1.5.2.1

1.5.2.1 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

wordpress helper utility site-options

16/11 2016

1.5.2

1.5.2.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

wordpress helper utility site-options

16/11 2016

1.5.1

1.5.1.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

wordpress helper utility site-options

16/11 2016

1.5.0

1.5.0.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

wordpress helper utility site-options

15/11 2016

1.0.2

1.0.2.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

wordpress helper utility site-options

15/11 2016

1.0.1

1.0.1.0 https://github.com/WordPress-Phoenix/wordpress-options-builder-class

Library that helps you setup theme or plugin options that store data in the database with just a line or two of code

  Sources   Download

GPL-v3

wordpress helper utility site-options