Changeset 3244832
- Timestamp:
- 02/22/2025 10:40:30 AM (13 months ago)
- Location:
- hitmouse/trunk
- Files:
-
- 3 edited
-
hitmouse.php (modified) (2 diffs)
-
includes/class-htms-admin-controller.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hitmouse/trunk/hitmouse.php
r3217613 r3244832 7 7 * Plugin URI: https://hitmouse.pro 8 8 * Description: Link Shortener, Link Masker, and Click Tracker for Affiliate- and other Links. 9 * Version: 1.2. 49 * Version: 1.2.5 10 10 * Requires at least: 6.2 11 11 * Requires PHP: 7.4 … … 28 28 29 29 // Definiere Konstante für die Plugin-Version, um Änderungen und Updates zu verfolgen.. 30 define( 'HITMOUSE_VERSION', '1.2. 4' );30 define( 'HITMOUSE_VERSION', '1.2.5' ); 31 31 // Definiere den Namen des Plugins für Text-Domains und eindeutige Kennung 32 32 define( 'HITMOUSE_NAME', 'hitmouse' ); -
hitmouse/trunk/includes/class-htms-admin-controller.php
r3217613 r3244832 13 13 use hitmouse\helpers\HTMS_Settings_Helper; 14 14 use hitmouse\db\{HTMS_Link_model, HTMS_Category_Model}; 15 use hitmouse\db\pro\HTMS_UTM_Model;16 use hitmouse\includes\HTMS_Word_linker;17 use hitmouse\includes\HTMS_Help_System;18 15 19 16 if ( ! defined( 'ABSPATH' ) ) { … … 129 126 'hitmouse_edit_link', 130 127 'display_edit_link_form', 131 null128 '' 132 129 ); 133 130 $this->add_menu_entry( … … 136 133 'hitmouse_add_category', 137 134 'display_add_category_form', 138 null135 '' 139 136 ); 140 137 $this->add_menu_entry( … … 143 140 'hitmouse_edit_category', 144 141 'display_edit_category_form', 145 null142 '' 146 143 ); 147 144 $this->add_menu_entry( … … 154 151 do_action( 'hitmouse_add_pro_menu_items', 'hitmouse_links' ); 155 152 156 $this->add_menu_entry( esc_html__( 'Settings', 'hitmouse' ), esc_html__( 'Settings', 'hitmouse' ), 'hitmouse_settings', null);153 $this->add_menu_entry( esc_html__( 'Settings', 'hitmouse' ), esc_html__( 'Settings', 'hitmouse' ), 'hitmouse_settings', '' ); 157 154 158 155 $this->show_pro_menu_item(); -
hitmouse/trunk/readme.txt
r3239256 r3244832 5 5 Tested up to: 6.7.2 6 6 Requires PHP: 7.4 7 Stable tag: 1.2. 47 Stable tag: 1.2.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 79 79 == Changelog == 80 80 81 = 1.2.5 (February 22, 2025) = 82 * FIX: PHP 8 compatibility 83 81 84 = 1.2.4 (January 06, 2025) = 82 85 * New: Category Filter in Links
Note: See TracChangeset
for help on using the changeset viewer.