Changeset 1239836
- Timestamp:
- 09/07/2015 01:41:46 PM (11 years ago)
- Location:
- acf-front-end-form-extension/trunk
- Files:
-
- 2 added
- 1 deleted
- 2 edited
-
acf-frontend-form.php (modified) (2 diffs)
-
classes/ACFFrontendFormActivation.php (added)
-
classes/ACFFrontendFormAdminNotices.php (added)
-
classes/ACFFrontendFormPointers.php (modified) (3 diffs)
-
readme.md (deleted)
Legend:
- Unmodified
- Added
- Removed
-
acf-front-end-form-extension/trunk/acf-frontend-form.php
r1238283 r1239836 6 6 * Author URI: https://profiles.wordpress.org/d363f86b/ 7 7 * Plugin URI: http://www.theportlandcompany.com 8 * Version: 1.0. 78 * Version: 1.0.8 9 9 */ 10 define( 'ACFFEF_FREE_VERSION', '1.0.8'); 11 10 12 require_once( dirname( __FILE__ ). '/classes/ACFFrontendFormAdminRawScripts.php' ); 13 require_once( dirname( __FILE__ ). '/classes/ACFFrontendFormAdminNotices.php' ); 14 require_once( dirname( __FILE__ ). '/classes/ACFFrontendFormActivation.php' ); 11 15 require_once( dirname( __FILE__ ). '/classes/ACFFrontendFormPointers.php' ); 12 16 require_once( dirname( __FILE__ ). '/classes/ACFFrontendForm.php' ); … … 14 18 ACFFrontendFormPointers::instance( ); 15 19 ACFFrontendFormAdminRawScripts::instance(); 20 ACFFrontendFormAdminNotices::instance(); 21 ACFFrontendFormActivation::instance(); 22 23 register_activation_hook( __FILE__, 'acffef_free_activation_hook'); 24 25 function acffef_free_activation_hook() { 26 ACFFrontendFormActivation::intro_notice(); 27 } 28 29 $current_version = get_option( 'acffef_free_version' ); 30 if (!is_string($current_version) || $current_version != ACFFEF_FREE_VERSION) { 31 update_option('acffef_free_version', ACFFEF_FREE_VERSION); 32 } 33 16 34 ?> -
acf-front-end-form-extension/trunk/classes/ACFFrontendFormPointers.php
r1238283 r1239836 24 24 25 25 /** 26 * Version string for notices 27 */ 28 private static $version; 29 30 /** 26 31 * Option key for pointers viewing state 27 32 */ … … 34 39 add_action( 'admin_enqueue_scripts', array( $this, 'setup_pointers_for_screen' ) ); 35 40 $this->pointers_shown_option = 'acffef_tutorial_shown'; 41 $this->version = '1.0.7'; 36 42 } 37 43 … … 197 203 " ); 198 204 } 205 199 206 } 200 207
Note: See TracChangeset
for help on using the changeset viewer.