Plugin Directory

Changeset 1239836


Ignore:
Timestamp:
09/07/2015 01:41:46 PM (11 years ago)
Author:
d363f86b
Message:

Updating on WP.org

Location:
acf-front-end-form-extension/trunk
Files:
2 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • acf-front-end-form-extension/trunk/acf-frontend-form.php

    r1238283 r1239836  
    66 * Author URI: https://profiles.wordpress.org/d363f86b/
    77 * Plugin URI: http://www.theportlandcompany.com
    8  * Version: 1.0.7
     8 * Version: 1.0.8
    99 */
     10define( 'ACFFEF_FREE_VERSION', '1.0.8');
     11
    1012require_once( dirname( __FILE__ ). '/classes/ACFFrontendFormAdminRawScripts.php' );
     13require_once( dirname( __FILE__ ). '/classes/ACFFrontendFormAdminNotices.php' );
     14require_once( dirname( __FILE__ ). '/classes/ACFFrontendFormActivation.php' );
    1115require_once( dirname( __FILE__ ). '/classes/ACFFrontendFormPointers.php' );
    1216require_once( dirname( __FILE__ ). '/classes/ACFFrontendForm.php' );
     
    1418ACFFrontendFormPointers::instance( );
    1519ACFFrontendFormAdminRawScripts::instance();
     20ACFFrontendFormAdminNotices::instance();
     21ACFFrontendFormActivation::instance();
     22
     23register_activation_hook( __FILE__,  'acffef_free_activation_hook');
     24
     25function acffef_free_activation_hook() {
     26    ACFFrontendFormActivation::intro_notice();
     27}
     28
     29$current_version = get_option( 'acffef_free_version' );
     30if (!is_string($current_version) || $current_version != ACFFEF_FREE_VERSION) {
     31    update_option('acffef_free_version', ACFFEF_FREE_VERSION);
     32}
     33
    1634?>
  • acf-front-end-form-extension/trunk/classes/ACFFrontendFormPointers.php

    r1238283 r1239836  
    2424
    2525    /**
     26     * Version string for notices
     27     */
     28    private static $version;
     29
     30    /**
    2631     * Option key for pointers viewing state
    2732     */
     
    3439        add_action( 'admin_enqueue_scripts', array( $this, 'setup_pointers_for_screen' ) );
    3540        $this->pointers_shown_option = 'acffef_tutorial_shown';
     41        $this->version = '1.0.7';
    3642    }
    3743
     
    197203        " );
    198204    }
     205
    199206}
    200207
Note: See TracChangeset for help on using the changeset viewer.