Changeset 2959324
- Timestamp:
- 08/28/2023 12:31:39 PM (3 years ago)
- Location:
- quentn-wp/trunk
- Files:
-
- 6 edited
-
admin/partials/quentn-wp-dashboard.php (modified) (1 diff)
-
admin/utility/class-helper.php (modified) (1 diff)
-
includes/class-quentn-wp-web-tracking.php (modified) (2 diffs)
-
includes/class-quentn-wp.php (modified) (1 diff)
-
quentn-wp.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quentn-wp/trunk/admin/partials/quentn-wp-dashboard.php
r2398796 r2959324 55 55 } elseif ( $active_tab == "quentn_web_tracking_tab" ) { //display web tracking options 56 56 $web_tracking = new Quentn_Wp_Web_Tracking(); 57 $web_tracking->register_web_tracking_fields(); 57 58 echo '<form method="post" action="options.php">'; 58 59 if( get_option('quentn_web_tracking_enabled') ) { -
quentn-wp/trunk/admin/utility/class-helper.php
r2371136 r2959324 209 209 return new \DateTimeZone( $tzstring ); 210 210 } 211 212 /** 213 * Log error messages 214 * 215 * @return bool 216 */ 217 public static function quentn_log_me($message) { 218 if ( WP_DEBUG === true ) { 219 if ( is_array($message) || is_object($message) ) { 220 error_log( print_r($message, true) ); 221 } else { 222 error_log( $message ); 223 } 224 } 225 } 211 226 } -
quentn-wp/trunk/includes/class-quentn-wp-web-tracking.php
r2640611 r2959324 55 55 ); 56 56 57 // register setting 58 foreach ( $settings as $setting ) { 59 register_setting( $setting["option_group"], $setting["option_name"], ( isset( $setting["callback"] ) ? $setting["callback"] : '' ) ); 60 } 61 62 // add settings section 63 add_settings_section( $section["id"], $section["title"], ( isset( $section["callback"] ) ? $section["callback"] : '' ), $section["page"] ); 64 65 } 66 67 /** 68 * Register fields 69 * 70 * @access public 71 * @return void 72 */ 73 public function register_web_tracking_fields() { 57 74 $fields = array(); 58 75 $fields[] = array( … … 73 90 ); 74 91 } 75 // register setting76 foreach ( $settings as $setting ) {77 register_setting( $setting["option_group"], $setting["option_name"], ( isset( $setting["callback"] ) ? $setting["callback"] : '' ) );78 }79 80 // add settings section81 add_settings_section( $section["id"], $section["title"], ( isset( $section["callback"] ) ? $section["callback"] : '' ), $section["page"] );82 92 83 93 // add settings field -
quentn-wp/trunk/includes/class-quentn-wp.php
r2870125 r2959324 75 75 $this->version = QUENTN_WP_VERSION; 76 76 } else { 77 $this->version = '1.2. 6';77 $this->version = '1.2.7'; 78 78 } 79 79 $this->plugin_name = 'quentn-wp'; -
quentn-wp/trunk/quentn-wp.php
r2870125 r2959324 17 17 * Plugin URI: https://docs.quentn.com/de/beta-quentn-wordpress-plugin/installieren-und-verbinden 18 18 * Description: This plugin allows you to restrict access to specific pages, create custom access links and create dynamic page countdowns. Optionally, you can connect your Quentn account to your WordPress installation to share contacts and manage access restrictions through Quentn. 19 * Version: 1.2. 619 * Version: 1.2.7 20 20 * Author: Quentn.com GmbH 21 21 * Author URI: https://quentn.com/ … … 37 37 define( "TABLE_QUENTN_RESTRICTIONS", 'qntn_restrictions' ); 38 38 define( "TABLE_QUENTN_USER_DATA", 'qntn_user_data' ); 39 define( 'QUENTN_WP_VERSION', '1.2. 6' );39 define( 'QUENTN_WP_VERSION', '1.2.7' ); 40 40 41 41 /** -
quentn-wp/trunk/readme.txt
r2870125 r2959324 3 3 Tags: Quentn, countdown, page restriction, email, elementor integration, email marketing tool, integration, email automation, marketing automation 4 4 Requires at least: 4.6.0 5 Tested up to: 6. 1.16 Stable tag: 1.2. 65 Tested up to: 6.3 6 Stable tag: 1.2.7 7 7 Requires PHP: 5.6.0 8 8 License: GPLv2 or later … … 66 66 67 67 == Changelog == 68 = 1.2.7 = 69 * Fix: Reduce number of API calls. 70 68 71 = 1.2.6 = 69 72 * Fix: Guzzle files were not autoloaded due to duplicated hash value. … … 156 159 == Upgrade Notice == 157 160 161 = 1.2.7 = 162 Thanks for using Quentn Plugin! Please update the plugin. It reduced the number of API calls and tested with new wordpress ( 6.3 ) 163 158 164 = 1.2.6 = 159 165 Thanks for using Quentn Plugin! Please update the plugin to fix error when sometimes Guzzle files were not autoloaded.
Note: See TracChangeset
for help on using the changeset viewer.