Plugin Directory

Changeset 3409456


Ignore:
Timestamp:
12/03/2025 12:16:57 PM (4 months ago)
Author:
itaugustine
Message:

Version 1.0.1

Location:
visitorlog/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • visitorlog/trunk/class/class-visitorlog-enqueue-script.php

    r3402679 r3409456  
    99 * @method public static function get_class_name()
    1010 * @method public static function admin_enqueue_scripts()
     11 * @method public static function base_enqueue_styles()
    1112 * @method public static function admin_enqueue_styles()
    1213 * @method public static function wp_enqueue_script_system()
     
    4142    public static function base_enqueue_styles()
    4243    {
     44        if ( !VisitorLog_System::is_current_pages() ) return;
     45
    4346        $URL  = VISITORLOG_PLUGIN_URL . 'assets/';
    4447        wp_enqueue_style( 'visitorlog-base', $URL.'css/visitor_log.css', array(), 1.0 );
  • visitorlog/trunk/class/class-visitorlog-menu.php

    r3402679 r3409456  
    5555                ),
    5656            );
    57 
    58             add_action( 'admin_menu', array( &$this, 'init_menus' ) );
     57            add_action( 'admin_menu', array( $this, 'init_menus' ) );
    5958        }
    6059
  • visitorlog/trunk/class/class-visitorlog-system.php

    r3402679 r3409456  
    5656        add_filter( 'wp_page_menu',       array(self::class_name(), 'menu_notitle') );
    5757        add_filter( 'wp_list_categories', array(self::class_name(), 'menu_notitle') );
    58 
    59         add_action( 'init',               array(self::class_name(), 'execute_maintenance') );
    6058        add_filter( 'esc_html',           array(self::class_name(), 'allow_specific_html_tags'), 10, 2 );
    6159        add_action( 'admin_body_class',   array(self::class_name(), 'admin_body_class'), 10, 1 );
     
    7775            return;         
    7876        }
    79 
    8077        if ( true === VisitorLog_Utility::check_update_db_version() ) {
    8178            update_option('visitorlog_run_quick_setup', 'update');
     
    105102            define( 'VISITORLOG_CONTENT_DIR', $content_dir );
    106103        }   
     104        add_action( 'init', array(self::class_name(), 'execute_maintenance') );
    107105
    108106        new VisitorLog_Menu();
  • visitorlog/trunk/readme.txt

    r3402679 r3409456  
    77Requires PHP:      7.4
    88Requires at least: 5.7
    9 Tested up to:      6.8
    10 Stable tag:        1.0.0
     9Tested up to:      6.9
     10Stable tag:        1.0.1
    1111License:           GPLv2 or later
    1212License URI:       https://www.gnu.org/licenses/gpl-3.0.html
     
    150150== Changelog ==
    151151
     152= 1.0.1 =
     153* Release Date - December 3, 2025 *
     154* Bumped the "Tested up to" tag to WP 6.9
     155
    152156= 1.0.0 =
     157* Release Date - November 25th 2025 *
    153158* Initial version *
    154 * Release Date - November 25th 2025 *
Note: See TracChangeset for help on using the changeset viewer.