Changeset 839188
- Timestamp:
- 01/15/2014 06:21:32 PM (12 years ago)
- Location:
- admin-form-framework/trunk
- Files:
-
- 3 edited
-
class-aff.php (modified) (1 diff)
-
examples/my_options.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
admin-form-framework/trunk/class-aff.php
r834287 r839188 4 4 * Plugin URI: http://dreamproduction.com/wordpress/admin-form-framework 5 5 * 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 7 7 * Author: Dan Stefancu 8 8 * Author URI: http://stefancu.ro/ -
admin-form-framework/trunk/examples/my_options.php
r834287 r839188 171 171 * @return string 172 172 */ 173 function my_options_get_copyright_text() {173 function get_my_options_copyright_text() { 174 174 $my_options = get_option( 'my_theme_options' ); 175 $ sticky_header = $my_options['sticky_header'];175 $individual_option = $my_options['copyright_text']; 176 176 177 return $ sticky_header;177 return $individual_option; 178 178 } -
admin-form-framework/trunk/readme.txt
r834287 r839188 1 1 === Admin Form Framework === 2 Contributors: de-ce 2 Contributors: de-ce, dream-production 3 3 Tags: development, settings, options, custom, admin 4 4 Requires at least: 3.5 5 5 Tested up to: 3.8 6 Stable tag: 1.0 6 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 42 42 = There are a zillion options plugins out there. Why this? = 43 43 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. 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. This is what we use internally at [Dream Production](http://dreamproduction.com). 45 45 46 46 = Get started = 47 47 48 For a complete example / settings page template, open up the included my_options.php file from examplesfolder.48 For a complete example / settings page template, open up the included my_options.php file from `examples` folder. 49 49 50 50 … … 71 71 == Changelog == 72 72 73 = 1.0.1 = 74 * Fixed example and readme. 75 73 76 = 1.0 = 74 77 * First public release.
Note: See TracChangeset
for help on using the changeset viewer.