Plugin Directory

Changeset 839188


Ignore:
Timestamp:
01/15/2014 06:21:32 PM (12 years ago)
Author:
de-ce
Message:

Preparing for 1.0.1 release

Location:
admin-form-framework/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • admin-form-framework/trunk/class-aff.php

    r834287 r839188  
    44 * Plugin URI: http://dreamproduction.com/wordpress/admin-form-framework
    55 * Description: Small framework for building Admin pages with forms. This plugin provides a wrapper for the WordPress Settings API that is a much easier, faster and extensible way of building your settings forms.
    6  * Version: 1.0
     6 * Version: 1.0.1
    77 * Author: Dan Stefancu
    88 * Author URI: http://stefancu.ro/
  • admin-form-framework/trunk/examples/my_options.php

    r834287 r839188  
    171171 * @return string
    172172 */
    173 function my_options_get_copyright_text() {
     173function get_my_options_copyright_text() {
    174174    $my_options = get_option( 'my_theme_options' );
    175     $sticky_header = $my_options['sticky_header'];
     175    $individual_option = $my_options['copyright_text'];
    176176
    177     return $sticky_header;
     177    return $individual_option;
    178178}
  • admin-form-framework/trunk/readme.txt

    r834287 r839188  
    11=== Admin Form Framework ===
    2 Contributors: de-ce
     2Contributors: de-ce, dream-production
    33Tags: development, settings, options, custom, admin
    44Requires at least: 3.5
    55Tested up to: 3.8
    6 Stable tag: 1.0
     6Stable tag: 1.0.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4242= There are a zillion options plugins out there. Why this? =
    4343
    44 All plugins will inevitably have their limitations, but Admin Form Framework is written in form of an object that can be easily extended to suit your needs.
     44All plugins will inevitably have their limitations, but Admin Form Framework is written in form of an object that can be easily extended to suit your needs. This is what we use internally at [Dream Production](http://dreamproduction.com).
    4545
    4646= Get started =
    4747
    48 For a complete example / settings page template, open up the included my_options.php file from examples folder.
     48For a complete example / settings page template, open up the included my_options.php file from `examples` folder.
    4949
    5050
     
    7171== Changelog ==
    7272
     73= 1.0.1 =
     74* Fixed example and readme.
     75
    7376= 1.0 =
    7477* First public release.
Note: See TracChangeset for help on using the changeset viewer.