Changeset 3409456
- Timestamp:
- 12/03/2025 12:16:57 PM (4 months ago)
- Location:
- visitorlog/trunk
- Files:
-
- 4 edited
-
class/class-visitorlog-enqueue-script.php (modified) (2 diffs)
-
class/class-visitorlog-menu.php (modified) (1 diff)
-
class/class-visitorlog-system.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
visitorlog/trunk/class/class-visitorlog-enqueue-script.php
r3402679 r3409456 9 9 * @method public static function get_class_name() 10 10 * @method public static function admin_enqueue_scripts() 11 * @method public static function base_enqueue_styles() 11 12 * @method public static function admin_enqueue_styles() 12 13 * @method public static function wp_enqueue_script_system() … … 41 42 public static function base_enqueue_styles() 42 43 { 44 if ( !VisitorLog_System::is_current_pages() ) return; 45 43 46 $URL = VISITORLOG_PLUGIN_URL . 'assets/'; 44 47 wp_enqueue_style( 'visitorlog-base', $URL.'css/visitor_log.css', array(), 1.0 ); -
visitorlog/trunk/class/class-visitorlog-menu.php
r3402679 r3409456 55 55 ), 56 56 ); 57 58 add_action( 'admin_menu', array( &$this, 'init_menus' ) ); 57 add_action( 'admin_menu', array( $this, 'init_menus' ) ); 59 58 } 60 59 -
visitorlog/trunk/class/class-visitorlog-system.php
r3402679 r3409456 56 56 add_filter( 'wp_page_menu', array(self::class_name(), 'menu_notitle') ); 57 57 add_filter( 'wp_list_categories', array(self::class_name(), 'menu_notitle') ); 58 59 add_action( 'init', array(self::class_name(), 'execute_maintenance') );60 58 add_filter( 'esc_html', array(self::class_name(), 'allow_specific_html_tags'), 10, 2 ); 61 59 add_action( 'admin_body_class', array(self::class_name(), 'admin_body_class'), 10, 1 ); … … 77 75 return; 78 76 } 79 80 77 if ( true === VisitorLog_Utility::check_update_db_version() ) { 81 78 update_option('visitorlog_run_quick_setup', 'update'); … … 105 102 define( 'VISITORLOG_CONTENT_DIR', $content_dir ); 106 103 } 104 add_action( 'init', array(self::class_name(), 'execute_maintenance') ); 107 105 108 106 new VisitorLog_Menu(); -
visitorlog/trunk/readme.txt
r3402679 r3409456 7 7 Requires PHP: 7.4 8 8 Requires at least: 5.7 9 Tested up to: 6. 810 Stable tag: 1.0. 09 Tested up to: 6.9 10 Stable tag: 1.0.1 11 11 License: GPLv2 or later 12 12 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 150 150 == Changelog == 151 151 152 = 1.0.1 = 153 * Release Date - December 3, 2025 * 154 * Bumped the "Tested up to" tag to WP 6.9 155 152 156 = 1.0.0 = 157 * Release Date - November 25th 2025 * 153 158 * Initial version * 154 * Release Date - November 25th 2025 *
Note: See TracChangeset
for help on using the changeset viewer.