Found Image http://plugins.svn.wordpress.org/admin-page-framework/assets/icon-256x256.png Admin Page Framework | Plugin Review Network Skip to Content

Plugin Review Network

Plugin Review Network

an eye on the best wordpress plugins
Show Sidebar Hide Sidebar
[+] Sidebar [-] Sidebar
Plugin:
Rated:
100%
5 Stars (19 votes)

Home

WP.Org

ReadMe

Support
  • Author:
    Michael Uno
Version: 3.8.21
Requires: WP 3.4
Last Updated:2080 days ago
Downloads:42625
Installations: 600+
Usage Retention:1.41%
Tags:
    admin pages, api, developers, options, settings
Download Plugin Package

Admin Page Framework

Released on February 14, 2013.
Download Plugin Package

Version: 3.8.21

Facilitates WordPress plugin and theme development.

  • Description
  • FAQ
  • Changelog
  • Installation
  • Screenshots


Reduce the Time Spent for Plugin and Theme Development

One of the time-consuming part of developing WordPress plugins and themes is creating setting pages. As you more and more write plugins and themes, you will soon realize major part of code can be reused. Admin Page Framework aims to provide reusable code that eliminates the necessity of writing repeated code over and over again.

You will have more organized means of building option pages with the framework. Extend the library class and pass your arrays defining the form elements to the predefined class methods. The library handles all the complex coding behind the scene and creates the pages and the forms for you.

Create Essential Page and Form Components for Your Users

  • Top-level Page, Sub Pages, and In-page Tabs - where your users will access to operate your plugin or theme.
  • Forms - to let your users store their options.
  • Custom Post Types - and the custom columns in the post listing table.
  • Custom Taxonomies and Fields - store options associated with a taxonomy in the taxonomy definition page.
  • Meta Boxes and Fields - store meta data associated with posts of set post types. Also meta boxes can be added to the pages created with the framework.
  • Widgets and Fields - display modular outputs based on the user's settings in the front end.
  • Network Admin Pages and Forms - create admin pages in the newtork admin area of WordPress multi-sites.

Construct Simple Yet Complex Setting Forms

  • Section Tabs - form sections can be displayed in a tabbed box.
  • Collapsible Sections - form sections can be collapsed and expanded.
  • Repeatable Sections and Fields - dynamically add/remove form sections and fields.
  • Sortable Sections and Fields - drag and drop form sections and fields to change the order.
  • Nested Sections and Fields - nest sections and fields to construct complex forms.
  • Import and Export Options - buttons that the user can import and export settings by uploading and downloading text files.
  • Reset Button - let your users to initialize the saved options.
  • Validation and Error Messages - with the pre-defined validation callbacks, the user's submitting form data can be verified. Furthermore, by setting the error array, you can display the error message to the user.
  • Contextual Help Pane - help information can be added to the contextual help pane that appears at the top right of each screen.
  • Custom Field Types - your own field type can be registered. This allows you to design own fields such as a combination of a checkbox with a text field.
  • Contact Form - receive emails of user feedback and issue reports sent via the contact form embedded in an admin page.
  • Tooltips - add a small pop-up box beside section and field title for the users to read about the option.

Produce a Series of Products with the Framework Extensibility

If you are planning to create a product possibly extended with an unlimited number of add-ons, take advantage of the framework's native extensibility. The created admin pages and forms will become highly extensible with the automatically created hooks. In other words, it empowers other developers to customize your plugin or theme. That will result on making your projects grow.

Also, use the framework as a library and your plugin or theme does not have to require an extra dependency to be installed. Therefore, your product will be perfectly portable.

Built-in Field Types

  • text - a normal field to enter text input.
  • password - a masked text input field.
  • textarea - a text input field with multiple lines. It supports TinyMCE rich text editor.
  • radio - a set of radio buttons that lets the user pick an option.
  • checkbox - a check box that lets the user enable/disable an item.
  • select - a drop-down list that lest the user pick one or more item(s) from a list.
  • hidden - a hidden field that will be useful to insert invisible values.
  • file - a file uploader that lets the user upload files.
  • image - a custom text field with the image uploader script that lets the user set an image URL.
  • media - a custom text field with the media uploader script that lets the user set a file URL.
  • color - a custom text field with the color picker script.
  • submit - a submit button that lets the user send the form.
  • export - a custom submit field that lets the user export the stored data.
  • import - a custom combination field of the file and the submit fields that let the user import data.
  • posttype - a set of check-lists of taxonomies enabled on the site in a tabbed box.
  • taxonomy - check-lists of taxonomies enabled on the site in a tabbed box.
  • size - a combination field of the text and the select fields that let the user set sizes with a selectable unit.
  • section_title - a text field placed in the section title to let the user name the section.
  • system - displays the site system information.
  • inline_mixed - consists of inline elements of fields with different field types.

Bundled Custom Field Types

With custom field types, you can create more detailed customized field outputs. The demo component includes the following example custom field types.

  • sample - a sample custom field type with a JavaScript script.
  • github - displays GitHub buttons.
  • path - lets the user select file paths on the server.
  • toggle - lets the user toggle a switch button.
  • no_ui_slider - lets the user set values between ranges with a slider.
  • select2 - lets the user select items from a predefined list which cam be populated with AJAX.
  • post_type_taxonomy - lets the user select taxonomy terms of selected post types.

If you want a field type that are not listed here, you can check the field type pack or request a new one in the forum.

Getting Started

To get started, go to Dashboard -> Admin Page Framework -> About -> Getting Started.

Demo

Activate the demo pages to see the possible features of the framework. To activate it, go to Dashboard -> Admin Page Framework -> Add Ons -> Demo.

Documentation

  • Online Documentation
  • Tutorials

Notes: this framework does not do anything by itself. If you are not a developer, you do not need this.

About the Project

What is this for?

This is a PHP class-based WordPress library that helps to create option pages and form fields in the administration area. In addition, it helps to manage to save, export, and import options.

Who needs it?

WordPress plugin/theme developers who publish own products and want to speed up creating setting forms, widgets, contact form etc. and don't want to require their users to install extra dependencies.

Do my plugin/theme users have to install Admin Page Framework?

No. Include the generated framework files in your distribution package. You can generate your own framework files via Dashboard -> Admin Page Framework -> Tools -> Generator.

Where can I get the framework files to include?

Go to Dashboard -> Admin Page Framework -> Tools -> Generator and download the files.

Does my commercial product incorporating your framework library have to be released under GPL2v+?

No. The loader plugin is released under GPLv2 or later but the library itself is released under MIT. Make sure to include only the library file.

Does the framework work with WordPress Multi-site?

Yes, it works with WordPress MU.

Technical Questions

Can I set a custom post type as a root page?

Yes. For built-in root menu items or to create your own ones, you need to use the setRootMenuPage() method. For root pages of custom post types, use setRootMenuPageBySlug().

$this->setRootMenuPageBySlug( 'edit.php?post_type=apf_posts' );

How do I retrieve the stored options?

The framework stores them as an organized multidimensional array in the options table in a single row. So use the get_option() function and pass the instantiated class name as the key or the custom key if you specify one in the constructor.

For instance, if your instantiated class name is APF then the code would be

$my_options = get_option( 'APF' );

And the option data is formed as an array with a structure like the following.

$my_options = array(
    // field id => field value
    'field_a' => 'value for field a'
    'field_b' => 'value for field b'
    ...
    // section id => array(
    //      field id => value,
    // )
    'section_a' => array(
        'field_a' => 'value for field_a of section_a',
        'field_b' => 'value for field_b of section_b',
        ...
    ),
    'section_b' => array(
        'field_a' => 'value for field_a of section_b',
        'field_b' => 'value for field_b of section_b',
        ...
    ),
    ...
);

If you are new to PHP, you may feel uncomfortable dealing with multi-dimensional arrays because you would need to call isset() so many times. The framework has a utility method to help retrieve values of multi-dimensional arrays.

$_oUtil = new AdminPageFramework_WPUtility;
$value  = $_oUtil->getElement(
    $my_options,    // (required) subject array
    array( 'key_in_the_first_depth', 'key_in_the_second_depth' ),   // (required) dimensional path
    'My Default Value Here' // (optional) set your default value in case a value is not set
);

So for example, if you need to retrieve the value of field_a in section_b, you can do something like this.

$value = $_oUtil->getElement(
    $my_options,
    array( 'section_b', 'field_a' ),
    'some default value'
);

In the framework factory class, you can access the utility object as it is defined already.

$value = $this->oUtil->getElement( $subject, $keys, $default );

Is it possible to use a custom options data for the form instead of the ones used by the framework?

Yes, there are two main means to achieve that.

  1. Use the value argument in the field definition array to suppress the displaying value in the field. See an example. https://gist.github.com/michaeluno/fb4088b922b71710c7fb

  2. Override the options array set to the entire form using the options_{instantiated class name} filter hook or pre-defined method. See an example. https://gist.github.com/michaeluno/fcfac27825aa8a35b90f

When you go with the second method, make sure to pass an empty string, '', to the first parameter of the constructor so that it disables the ability to store submitted form data into the options table.

new MyAdminPage( '' );

How can I add sub-menu pages to the top-level page created by the framework from a separate script?

Say, in your main plugin, your class MyAdminPageClassA created a top-level page. In your extension plugin, you want to add sub-menu pages from another instance MyAdminPageClassB.

In the setUp() method of MyAdminPageClasB, pass the instantiated class name of the main plugin that created the root menu, MyAdminPageClassA, to the setRootMenuPageBySlug() method.

$this->setRootMenuPageBySlug( 'MyAdminPageClassA' );

Another option is to use the set_up_{class name} action hook. The callback method receives the admin page class object and you can access the framework methods to add sub-menu pages.

class ThirdPartyScript {

    public function __construct() {
        add_action( 'set_up_' . 'MyAdminPageClassA', array( $this, 'replyToAddSubMenuPages' ) );
    }

    public function replyToAddSubMenuPages( $oAdminPage ) {

        $oAdminPage->addSubMenuPage(
            array(
                'page_slug' => 'my_admin_page_b',
                'title'     => __( 'Example', 'your-text-domain' ),
                'order'     => 20,
            )
        );

    }

}
new ThirdPartyScript;

See an example.

I want my users to install the loader plugin but do not want to display any visuals of the loader plugin. Is there a way to disable it?

Enable the silent mode of the loader plugin by setting the APFL_SILENT_MODE constant in your script.

define( 'APFL_SILENT_MODE', true );

Can I create pages in the network admin area?

Yes, See the demo.

Some of my users claim they cannot save options. What would be a possible cause?

  • max_input_vars of PHP settings. If this value is small and there are lots of form input elements, the user may not be able to save the options.

To increase the value, edit php.ini and add the following line where 10000 is the increased number.

max_input_vars = 10000
  • max_allowed_packet of MySQL settings. Try increasing this value in the my.ini or my.cnf file.

The 500M in the following line is where the increased value should be set.

max_allowed_packet=500M

Please keep in mind that these are just a few of many possibilities. If you encounter a situation that prevented the user from saving options, please report.

My class is getting too big by defining predefined callback methods. Is there a way to separate those?

Yes. The predefine method names also serve as a WordPress filter/action hook name. So you can just add callbacks to those hooks from a separate file.

For example, if you want to move your method content_my_page_slug(), then you would do something like,

function getMyPageContent( $sContent ) {
    return $sContent . ' additional contents here.';
}
add_filter( 'content_my_page_slug', 'getMyPageContent' );

IF you want to move your method load_my_page_slug(), then you would do something like,

function loadMyPage( $oFactory ) {
    // do something when the page loads.
}
add_action( 'load_my_page_slug', 'loadMyPage' );

Custom field types do not seem to show up. What did I do wrong?

Most likely, you have not registered the field type. The check-box in Generator will include the field type files in the zip archive and their paths in the list for the auto-loader loaded by the framework bootstrap file.

This essentially eliminates the use of include() or require(), meaning you can call the custom field type files without using include(). However, the field type is not registered by itself yet.

In order to use a custom field type, you need to instantiate the field type class by passing the extended framework class name. For example, if your framework class name is MyPlugin_AdminPageFramework and the field type class name is Select2CustomFieldType, then you need to do

new Select2CustomFieldType( 'MyPlugin_AdminPageFramework' );

Do this in the setUp() method in your extended framework class.

public function setUp() {
    new Select2CustomFieldType( 'MyPlugin_AdminPageFramework' );
}

This enables the select2 custom field type for the class MyPlugin_AdminPageFramework, not for the other classes. So essentially, do this for every class that uses the field type.

I cannot find what I'd like to do in tutorials and documentation. Where else should I look for more information?

  • You may directly read the code of the demo plugin. The demo plugin code is located in the example directory.
  • Ask questions in the support forum.

Getting Involved

I've written a useful class, functions, and even custom field types that will be useful for others! Do you want to include it?

The GitHub repository is available. Raise an issue first and we'll see if changes can be made.

How can I contribute to this project?

There are various ways to do so. Please refer to the contribution guideline.

How can I contribute to improving the documentation?

You are welcome to submit documentation. Please follow the Documentation Guideline.

In addition, your tutorials and snippets for the framework can be listed in the manual. Let us know it here.

More FAQ Items

Check out the questions tagged as FAQ on GitHub.

Tutorials

Index

Roadmap

Check out the milestones and issues on GitHub labeled enhancement.

3.9.1 - 2022/04/14

  • Added the mime_types argument for the image and media field types.
  • Fixed a bug that setting notices set with setSettingNotice() of classes extending the post type factory class were not displayed.
  • Changed the behavior of the color field type by triggering a change event after setting a new value.
  • Changed the behavior of the custom image uploader by triggering a change event after setting a new value.

3.9.0 - 2022/03/02

  • Refined tooltips.
  • Refined the path custom field type due to the deprecation of the jQueryFileTree library and switching to jstree, which involves deprecation of some arguments and UI improvements.
  • Added the table built-in field type.
  • Added the contact built-in field type.
  • Added the selector argument to the select2 custom field type that enables to show/hide elements on selection.
  • Added the ability for tooltips to include a tags.
  • Added the width argument for the tip field argument.
  • Added the ability to insert included custom field type labels in the file header comment of the compiled bootstrap file.
  • Fixed a bug that sortable sections could not be sorted in some cases.
  • Fixed an issue that field repeat buttons and labels of the color field type are hidden by the color picker pallet in recent WordPress versions.
  • Fixed an issue that tooltips created with the tip field argument made the document width wider than the initial width.
  • Fixed an issue that class names and text domains of sub-files of custom field types were not converted when building.
  • Changed the default argument value of save of the submit field type to false.
  • Changed the behavior of loading framework resources (stylesheets and JavaScript scripts) from internally to externally for most cases.
  • Changed the tab label Generator to Compiler.
  • Deprecated the email argument of the submit field type.

Old Change Log

See here


  1. Upload admin-page-framework.zip via Dashboard -> Plugins -> Add New -> Upload Plugin.
  2. Activate it.

For usage instructions to get started, go to Dashboard -> Admin Page Framework -> About -> Getting Started and create your first plugin.


Text Fields
Screenshot 1


Selector and Checkboxes
Screenshot 2


Image, Media, and File Upload
Screenshot 3


Form Input Verification
Screenshot 4


Import and Export
Screenshot 5


Taxonomy and Post Type Checklists
Screenshot 6


Color Pickers and Buttons
Screenshot 7


Custom Post Type and Meta Box
Screenshot 8


Contextual Help Pane
Screenshot 9


Taxonomy Field
Screenshot 10


Meta Boxes in Pages Added by Framework
Screenshot 11


Repeatable Sections, Section Tabs and Section Title Field
Screenshot 12


Widget Form
Screenshot 13


User Meta Fields
Screenshot 14



 

Click here to cancel reply.

Click here to cancel reply.


*

*


Please copy the string uWnLmU to the field below:

Home | Sitemap | Contact
Network Skin Theme for BioShip by WordQuest
Password Reset
Please enter your e-mail address. You will receive a new password via e-mail.