Changeset 718381
- Timestamp:
- 05/26/2013 03:45:07 AM (13 years ago)
- Location:
- article-forge/trunk
- Files:
-
- 4 edited
-
ArticleForge/Admin/Settings.php (modified) (3 diffs)
-
ArticleForge/Constants.php (modified) (1 diff)
-
main.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
article-forge/trunk/ArticleForge/Admin/Settings.php
r718377 r718381 59 59 60 60 public function __construct() { 61 $this->options = \ArticleForge\Options::load();61 // $this->options = \ArticleForge\Options::load(); 62 62 $this->sections = array( 63 63 array( … … 155 155 156 156 private function setup_actions() { 157 add_action( af_namespace() . '_init', array( $this, 'initialize' ), 2 ); 157 158 add_action( af_namespace() . '_admin_menu', array( $this, 'add_menu' ) ); // Add menu item to settings menu 158 159 add_action( af_namespace() . '_admin_init', array( $this, 'register' ) ); … … 162 163 add_action( af_namespace() . '_admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); 163 164 add_action( 'wp_ajax_' . af_namespace() . '_settings_defaults', array( $this, 'settings_defaults' ) ); 165 } 166 167 public function initialize() { 168 $this->options = articleforge()->options; //\ArticleForge\Options::load(); 164 169 } 165 170 -
article-forge/trunk/ArticleForge/Constants.php
r718377 r718381 6 6 const PackageName = 'Article Forge'; 7 7 8 const Version = '1.0. 0';8 const Version = '1.0.1'; 9 9 10 10 const PackagePrefix = 'articleforge'; -
article-forge/trunk/main.php
r718377 r718381 7 7 * Author: Anthony Wells 8 8 * Author URI: http://www.bytewisemcu.org/profile/awells 9 * Version: 1.0. 09 * Version: 1.0.1 10 10 * Text Domain: articleforge 11 11 * Domain Path: /languages/ -
article-forge/trunk/readme.txt
r718377 r718381 4 4 Requires at least: 3.0.1 5 5 Tested up to: 3.5.1 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.