Plugin Directory

Changeset 3051258

Timestamp:
03/14/2024 05:37:09 PM (5 months ago)
Author:
stevejonesdev
Message:

release v1.9.3

Location:
accessibility-checker
Files:
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • accessibility-checker/tags/1.9.3/accessibility-checker.php

    r3049209 r3051258  
    1111 * Plugin URI:        https://a11ychecker.com
    1212 * Description:       Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.
    13  * Version:           1.9.2
     13 * Version:           1.9.
    1414 * Author:            Equalize Digital
    1515 * Author URI:        https://equalizedigital.com
     
    4242// Current plugin version.
    4343if ( ! defined( 'EDAC_VERSION' ) ) {
    44     define( 'EDAC_VERSION', '1.9.2' );
     44    define( 'EDAC_VERSION', '1.9.' );
    4545}
    4646
  • accessibility-checker/tags/1.9.3/admin/class-admin-notices.php

    r3029154 r3051258  
    1818    public function __construct() {
    1919    }
    20    
     20
    2121    /**
    2222     * Initialize class hooks.
     
    2525     */
    2626    public function init_hooks() {
     27
    2728        add_action( 'in_admin_header', array( $this, 'edac_remove_admin_notices' ), 1000 );
     29
     30
     31
     32
     33
     34
     35
     36
     37
     38
     39
     40
     41
     42
     43
    2844        add_action( 'admin_notices', array( $this, 'edac_black_friday_notice' ) );
    2945        add_action( 'wp_ajax_edac_black_friday_notice_ajax', array( $this, 'edac_black_friday_notice_ajax' ) );
     
    353369     */
    354370    public function edac_password_protected_notice() {
    355         if ( (bool) get_option( 'edac_password_protected' ) 
    356             && ! (bool) get_option( 'edac_password_protected_notice_dismiss' ) 
     371        if ( (bool) get_option( 'edac_password_protected' )
     372            && ! (bool) get_option( 'edac_password_protected_notice_dismiss' )
    357373        ) {
    358374            echo wp_kses( '<div class="edac_password_protected_notice notice notice-error is-dismissible"><p>' . $this->edac_password_protected_notice_text() . '</p></div>', 'post' );
  • accessibility-checker/tags/1.9.3/admin/class-helpers.php

    r3049209 r3051258  
    212212        return $results;
    213213    }
     214
     215
     216
     217
     218
     219
     220
     221
     222
     223
     224
     225
     226
     227
     228
     229
     230
     231
     232
    214233}
  • accessibility-checker/tags/1.9.3/admin/class-widgets.php

    r3029154 r3051258  
    2828     */
    2929    public function dashboard_setup() {
     30
     31
     32
     33
    3034        wp_add_dashboard_widget(
    3135            'edac_dashboard_scan_summary',
  • accessibility-checker/tags/1.9.3/includes/options-page.php

    r3029154 r3051258  
    2929 */
    3030function edac_add_options_page() {
     31
     32
     33
     34
     35
    3136
    3237    add_menu_page(
     
    339344                    ?>
    340345                    <label>
    341                         <input type="checkbox" name="<?php echo 'edac_post_types[]'; ?>" value="<?php echo esc_attr( $post_type ); ?>" 
     346                        <input type="checkbox" name="<?php echo 'edac_post_types[]'; ?>" value="<?php echo esc_attr( $post_type ); ?>"
    342347                                                                <?php
    343348                                                                checked( in_array( $post_type, $selected_post_types, true ), 1 );
     
    455460    <fieldset>
    456461        <label>
    457             <input type="checkbox" name="<?php echo 'edac_include_accessibility_statement_link'; ?>" value="<?php echo '1'; ?>" 
     462            <input type="checkbox" name="<?php echo 'edac_include_accessibility_statement_link'; ?>" value="<?php echo '1'; ?>"
    458463                                                    <?php
    459464                                                    checked( $option, 1 );
     
    509514 */
    510515function edac_accessibility_statement_preview_cb() {
    511     echo wp_kses_post( 
     516    echo wp_kses_post(
    512517        ( new \EDAC\Inc\Accessibility_Statement() )->get_accessibility_statement()
    513518    );
  • accessibility-checker/tags/1.9.3/readme.txt

    r3049209 r3051258  
    44Requires at least: 6.2
    55Tested up to: 6.4.3
    6 Stable tag: 1.9.2
     6Stable tag: 1.9.
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    171171
    172172== Changelog ==
     173
     174
     175
    173176
    174177= 1.9.2 =
  • accessibility-checker/tags/1.9.3/vendor/composer/installed.php

    r3049209 r3051258  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '6df7ece6f756616135e29739cd729beb909fd8b9',
     6        'reference' => '',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-main',
    3333            'version' => 'dev-main',
    34             'reference' => '6df7ece6f756616135e29739cd729beb909fd8b9',
     34            'reference' => '',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
  • accessibility-checker/trunk/accessibility-checker.php

    r3049209 r3051258  
    1111 * Plugin URI:        https://a11ychecker.com
    1212 * Description:       Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.
    13  * Version:           1.9.2
     13 * Version:           1.9.
    1414 * Author:            Equalize Digital
    1515 * Author URI:        https://equalizedigital.com
     
    4242// Current plugin version.
    4343if ( ! defined( 'EDAC_VERSION' ) ) {
    44     define( 'EDAC_VERSION', '1.9.2' );
     44    define( 'EDAC_VERSION', '1.9.' );
    4545}
    4646
  • accessibility-checker/trunk/admin/class-admin-notices.php

    r3029154 r3051258  
    1818    public function __construct() {
    1919    }
    20    
     20
    2121    /**
    2222     * Initialize class hooks.
     
    2525     */
    2626    public function init_hooks() {
     27
    2728        add_action( 'in_admin_header', array( $this, 'edac_remove_admin_notices' ), 1000 );
     29
     30
     31
     32
     33
     34
     35
     36
     37
     38
     39
     40
     41
     42
     43
    2844        add_action( 'admin_notices', array( $this, 'edac_black_friday_notice' ) );
    2945        add_action( 'wp_ajax_edac_black_friday_notice_ajax', array( $this, 'edac_black_friday_notice_ajax' ) );
     
    353369     */
    354370    public function edac_password_protected_notice() {
    355         if ( (bool) get_option( 'edac_password_protected' ) 
    356             && ! (bool) get_option( 'edac_password_protected_notice_dismiss' ) 
     371        if ( (bool) get_option( 'edac_password_protected' )
     372            && ! (bool) get_option( 'edac_password_protected_notice_dismiss' )
    357373        ) {
    358374            echo wp_kses( '<div class="edac_password_protected_notice notice notice-error is-dismissible"><p>' . $this->edac_password_protected_notice_text() . '</p></div>', 'post' );
  • accessibility-checker/trunk/admin/class-helpers.php

    r3049209 r3051258  
    212212        return $results;
    213213    }
     214
     215
     216
     217
     218
     219
     220
     221
     222
     223
     224
     225
     226
     227
     228
     229
     230
     231
     232
    214233}
  • accessibility-checker/trunk/admin/class-widgets.php

    r3029154 r3051258  
    2828     */
    2929    public function dashboard_setup() {
     30
     31
     32
     33
    3034        wp_add_dashboard_widget(
    3135            'edac_dashboard_scan_summary',
  • accessibility-checker/trunk/includes/options-page.php

    r3029154 r3051258  
    2929 */
    3030function edac_add_options_page() {
     31
     32
     33
     34
     35
    3136
    3237    add_menu_page(
     
    339344                    ?>
    340345                    <label>
    341                         <input type="checkbox" name="<?php echo 'edac_post_types[]'; ?>" value="<?php echo esc_attr( $post_type ); ?>" 
     346                        <input type="checkbox" name="<?php echo 'edac_post_types[]'; ?>" value="<?php echo esc_attr( $post_type ); ?>"
    342347                                                                <?php
    343348                                                                checked( in_array( $post_type, $selected_post_types, true ), 1 );
     
    455460    <fieldset>
    456461        <label>
    457             <input type="checkbox" name="<?php echo 'edac_include_accessibility_statement_link'; ?>" value="<?php echo '1'; ?>" 
     462            <input type="checkbox" name="<?php echo 'edac_include_accessibility_statement_link'; ?>" value="<?php echo '1'; ?>"
    458463                                                    <?php
    459464                                                    checked( $option, 1 );
     
    509514 */
    510515function edac_accessibility_statement_preview_cb() {
    511     echo wp_kses_post( 
     516    echo wp_kses_post(
    512517        ( new \EDAC\Inc\Accessibility_Statement() )->get_accessibility_statement()
    513518    );
  • accessibility-checker/trunk/readme.txt

    r3049209 r3051258  
    44Requires at least: 6.2
    55Tested up to: 6.4.3
    6 Stable tag: 1.9.2
     6Stable tag: 1.9.
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    171171
    172172== Changelog ==
     173
     174
     175
    173176
    174177= 1.9.2 =
  • accessibility-checker/trunk/vendor/composer/installed.php

    r3049209 r3051258  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '6df7ece6f756616135e29739cd729beb909fd8b9',
     6        'reference' => '',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    3232            'pretty_version' => 'dev-main',
    3333            'version' => 'dev-main',
    34             'reference' => '6df7ece6f756616135e29739cd729beb909fd8b9',
     34            'reference' => '',
    3535            'type' => 'library',
    3636            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.