Changeset 2922648
- Timestamp:
- 06/07/2023 05:56:31 AM (3 years ago)
- Location:
- wk-google-analytics
- Files:
-
- 14 edited
- 1 copied
-
tags/1.11.0 (copied) (copied from wk-google-analytics/trunk)
-
tags/1.11.0/lib/Settings.php (modified) (11 diffs)
-
tags/1.11.0/readme.txt (modified) (2 diffs)
-
tags/1.11.0/vendor/autoload.php (modified) (1 diff)
-
tags/1.11.0/vendor/composer/autoload_real.php (modified) (3 diffs)
-
tags/1.11.0/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/1.11.0/vendor/composer/installed.php (modified) (2 diffs)
-
tags/1.11.0/wk-ga.php (modified) (1 diff)
-
trunk/lib/Settings.php (modified) (11 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (3 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/wk-ga.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wk-google-analytics/tags/1.11.0/lib/Settings.php
r2715258 r2922648 5 5 class Settings 6 6 { 7 8 /** 9 * Add an options page under 'Settings' 7 /** 8 * Add an options page under 'Settings'. 10 9 * 11 10 * @since 1.0 12 11 * @see https://codex.wordpress.org/Function_Reference/add_options_page 13 * 14 */ 15 function settings_page() 12 */ 13 public function settings_page() 16 14 { 17 15 add_options_page( … … 20 18 'manage_options', 21 19 'google_analytics', 22 array($this, "settings_content") 23 ); 24 } 25 26 27 /** 28 * Ouputs the markup for the options page 20 [$this, 'settings_content'] 21 ); 22 } 23 24 /** 25 * Ouputs the markup for the options page. 29 26 * 30 27 * @since 1.0 31 * 32 */ 33 function settings_content() 34 { 35 36 if (!isset($_REQUEST['settings-updated'])) 28 */ 29 public function settings_content() 30 { 31 if (!isset($_REQUEST['settings-updated'])) { 37 32 $_REQUEST['settings-updated'] = false; 38 ?> 33 } 34 ?> 39 35 <div class="wrap"> 40 36 <h2><?php echo esc_html(get_admin_page_title()); ?></h2> 41 <?php if (false !== $_REQUEST['settings-updated']) :?>37 <?php if (false !== $_REQUEST['settings-updated']) { ?> 42 38 <div class="updated fade"> 43 39 <p> … … 47 43 </p> 48 44 </div> 49 <?php endif;?>45 <?php } ?> 50 46 <div class="wk-left-part"> 51 47 <form id="wk-google-analytics-settings" method="post" action="options.php"> … … 60 56 } 61 57 62 63 /** 64 * Registers all the settings separately 58 /** 59 * Registers all the settings separately. 65 60 * 66 61 * @since 1.0 … … 68 63 * @see https://codex.wordpress.org/Function_Reference/add_settings_section 69 64 * @see https://codex.wordpress.org/Function_Reference/add_settings_field 70 * 71 */ 72 function register_settings() 73 { 74 65 */ 66 public function register_settings() 67 { 75 68 add_settings_section( 76 69 'google_analytics', 77 70 '', 78 array($this, 'settings_header'), 79 'google_analytics' 80 ); 81 82 /** 83 * @since 1.0 84 */ 71 [$this, 'settings_header'], 72 'google_analytics' 73 ); 74 75 // @since 1.0 85 76 register_setting( 86 77 'wk_ga_google_analytics', … … 90 81 add_settings_field( 91 82 'ga_tracking_code', 92 __('Google Analytics Tracking ID', 'wk-google-analytics'), 93 array($this, 'tracking_code_field'), 94 'google_analytics', 95 'google_analytics' 96 ); 97 98 /** 99 * @since 1.0 100 */ 83 __('Google Analytics 4 Stream-ID', 'wk-google-analytics'), 84 [$this, 'tracking_code_field'], 85 'google_analytics', 86 'google_analytics' 87 ); 88 89 // @since 1.0 101 90 register_setting( 102 91 'wk_ga_google_analytics', … … 107 96 'ga_anonymize_ip', 108 97 __('IP Anonymization', 'wk-google-analytics'), 109 array($this, 'anonymize_ip_field'), 110 'google_analytics', 111 'google_analytics' 112 ); 113 114 /** 115 * @since 1.1 116 */ 98 [$this, 'anonymize_ip_field'], 99 'google_analytics', 100 'google_analytics' 101 ); 102 103 // @since 1.1 117 104 register_setting( 118 105 'wk_ga_google_analytics', … … 123 110 'track_logged_in', 124 111 __('Track logged in users', 'wk-google-analytics'), 125 array($this, 'track_logged_in_field'), 126 'google_analytics', 127 'google_analytics' 128 ); 129 130 /** 131 * @since 1.2 132 */ 112 [$this, 'track_logged_in_field'], 113 'google_analytics', 114 'google_analytics' 115 ); 116 117 // @since 1.2 133 118 register_setting( 134 119 'wk_ga_google_analytics', … … 139 124 'ga_use_tag_manager', 140 125 __('Use Google Tag Manager instead', 'wk-google-analytics'), 141 array($this, 'use_tag_manager_field'), 142 'google_analytics', 143 'google_analytics' 144 ); 145 146 /** 147 * @since 1.2 148 */ 126 [$this, 'use_tag_manager_field'], 127 'google_analytics', 128 'google_analytics' 129 ); 130 131 // @since 1.2 149 132 register_setting( 150 133 'wk_ga_google_analytics', … … 155 138 'ga_tag_manager_id', 156 139 __('Google Tag Manager ID', 'wk-google-analytics'), 157 array($this, 'tag_manager_id_field'), 158 'google_analytics', 159 'google_analytics' 160 ); 161 } 162 163 164 /** 165 * Renders the header text for the settings page 166 * 167 * @since 1.6.2 168 * 169 */ 170 function settings_header() 140 [$this, 'tag_manager_id_field'], 141 'google_analytics', 142 'google_analytics' 143 ); 144 } 145 146 /** 147 * Renders the header text for the settings page. 148 * 149 * @since 1.6.2 150 */ 151 public function settings_header() 171 152 { 172 153 wp_enqueue_script('cookie-js'); 173 154 wp_enqueue_script('wk-ga-admin-js'); 174 ?> 175 155 ?> 176 156 <p><?php _e('Enter your Google Analytics tracking ID below. Should you use Google Tag Manager to deploy Google Analytics, enter your GTM Container ID in the respective field and tick the box “Use Google Tag Manager instead”.', 'wk-google-analytics'); ?> 177 157 </p> 178 179 <?php 180 } 181 182 /** 183 * Renders text input for the Google Analytics tracking code 184 * 185 * @since 1.6.2 186 * 187 */ 188 function tracking_code_field() 189 { 190 158 <?php 159 } 160 161 /** 162 * Renders text input for the Google Analytics tracking code. 163 * 164 * @since 1.6.2 165 */ 166 public function tracking_code_field() 167 { 191 168 $field = 'ga_tracking_code'; 192 169 $value = esc_attr(get_option($field)); 193 170 194 ?> 195 196 <input type="text" name="<?php echo $field; ?>" placeholder="UA-XXXXXXXX-X" value="<?php echo $value; ?>" /> 197 198 <?php 199 } 200 201 /** 202 * Renders checkbox for the anonymize IP's option 203 * 204 * @since 1.6.2 205 * 206 */ 207 function anonymize_ip_field() 208 { 209 171 ?> 172 <input type="text" name="<?php echo $field; ?>" placeholder="G-XXXXXXXXXX" value="<?php echo $value; ?>" /> 173 <?php 174 } 175 176 /** 177 * Renders checkbox for the anonymize IP's option. 178 * 179 * @since 1.6.2 180 */ 181 public function anonymize_ip_field() 182 { 210 183 $field = 'ga_anonymize_ip'; 211 184 $value = get_option($field); 212 $value = ( $value !== false) ? $value : true;213 214 ?>185 $value = (false !== $value) ? $value : true; 186 187 ?> 215 188 216 189 <div class="anonymize-ip-tooltip"> … … 229 202 } 230 203 </style> 231 232 <?php 233 234 } 235 236 /** 237 * Renders checkbox for the track logged in users option 238 * 239 * @since 1.6.2 240 * 241 */ 242 function track_logged_in_field() 243 { 244 204 <?php 205 } 206 207 /** 208 * Renders checkbox for the track logged in users option. 209 * 210 * @since 1.6.2 211 */ 212 public function track_logged_in_field() 213 { 245 214 $field = 'track_logged_in'; 246 215 $value = get_option($field); 247 216 248 ?> 249 217 ?> 250 218 <input type="checkbox" name="<?php echo $field; ?>" value="1" <?php checked($value); ?> /> 251 252 <?php 253 254 } 255 256 /** 257 * Renders checkbox for the use tag manager option 258 * 259 * @since 1.6.2 260 * 261 */ 262 function use_tag_manager_field() 263 { 264 219 <?php 220 221 } 222 223 /** 224 * Renders checkbox for the use tag manager option. 225 * 226 * @since 1.6.2 227 */ 228 public function use_tag_manager_field() 229 { 265 230 $field = 'ga_use_tag_manager'; 266 231 $value = get_option($field); 267 232 268 ?> 269 233 ?> 270 234 <input type="checkbox" name="<?php echo $field; ?>" value="1" <?php checked($value); ?> /> 271 272 <?php 273 274 } 275 276 /** 277 * Renders text field for the Google Tag Manager ID 278 * 279 * @since 1.6.2 280 * 281 */ 282 function tag_manager_id_field() 283 { 284 235 <?php 236 237 } 238 239 /** 240 * Renders text field for the Google Tag Manager ID. 241 * 242 * @since 1.6.2 243 */ 244 public function tag_manager_id_field() 245 { 285 246 $field = 'ga_tag_manager_id'; 286 247 $value = esc_attr(get_option($field)); 287 248 288 ?> 289 249 ?> 290 250 <input type="text" name="<?php echo $field; ?>" placeholder="GTM-XXXXXX" value="<?php echo $value; ?>" /> 291 292 251 <?php 293 252 -
wk-google-analytics/tags/1.11.0/readme.txt
r2893569 r2922648 5 5 Tested up to: 6.2 6 6 Requires PHP: 7.2 7 Stable tag: 1.1 0.17 Stable tag: 1.11.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 33 34 34 == Changelog == 35 36 = 1.11.0 = 37 38 * Renamed UA to G in settings for better understanding with the upcoming changes 35 39 36 40 = 1.10.1 = -
wk-google-analytics/tags/1.11.0/vendor/autoload.php
r2893569 r2922648 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 3649409dbb62a90143e517b7b492fdbf::getLoader();7 return ComposerAutoloaderInit5c342c80332e199e3105d5a596e44f57::getLoader(); -
wk-google-analytics/tags/1.11.0/vendor/composer/autoload_real.php
r2893569 r2922648 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 3649409dbb62a90143e517b7b492fdbf5 class ComposerAutoloaderInit5c342c80332e199e3105d5a596e44f57 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 3649409dbb62a90143e517b7b492fdbf', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit5c342c80332e199e3105d5a596e44f57', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 3649409dbb62a90143e517b7b492fdbf', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit5c342c80332e199e3105d5a596e44f57', 'loadClassLoader')); 30 30 31 31 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 33 33 require __DIR__ . '/autoload_static.php'; 34 34 35 call_user_func(\Composer\Autoload\ComposerStaticInit 3649409dbb62a90143e517b7b492fdbf::getInitializer($loader));35 call_user_func(\Composer\Autoload\ComposerStaticInit5c342c80332e199e3105d5a596e44f57::getInitializer($loader)); 36 36 } else { 37 37 $map = require __DIR__ . '/autoload_namespaces.php'; -
wk-google-analytics/tags/1.11.0/vendor/composer/autoload_static.php
r2893569 r2922648 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 3649409dbb62a90143e517b7b492fdbf7 class ComposerStaticInit5c342c80332e199e3105d5a596e44f57 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 135 135 { 136 136 return \Closure::bind(function () use ($loader) { 137 $loader->prefixLengthsPsr4 = ComposerStaticInit 3649409dbb62a90143e517b7b492fdbf::$prefixLengthsPsr4;138 $loader->prefixDirsPsr4 = ComposerStaticInit 3649409dbb62a90143e517b7b492fdbf::$prefixDirsPsr4;139 $loader->classMap = ComposerStaticInit 3649409dbb62a90143e517b7b492fdbf::$classMap;137 $loader->prefixLengthsPsr4 = ComposerStaticInit5c342c80332e199e3105d5a596e44f57::$prefixLengthsPsr4; 138 $loader->prefixDirsPsr4 = ComposerStaticInit5c342c80332e199e3105d5a596e44f57::$prefixDirsPsr4; 139 $loader->classMap = ComposerStaticInit5c342c80332e199e3105d5a596e44f57::$classMap; 140 140 141 141 }, null, ClassLoader::class); -
wk-google-analytics/tags/1.11.0/vendor/composer/installed.php
r2893569 r2922648 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '1.1 0.1',4 'version' => '1.1 0.1.0',3 'pretty_version' => '1.11.0', 4 'version' => '1.11.0.0', 5 5 'type' => 'wordpress-plugin', 6 6 'install_path' => __DIR__ . '/../../', … … 21 21 ), 22 22 'webkinder/wk-google-analytics' => array( 23 'pretty_version' => '1.1 0.1',24 'version' => '1.1 0.1.0',23 'pretty_version' => '1.11.0', 24 'version' => '1.11.0.0', 25 25 'type' => 'wordpress-plugin', 26 26 'install_path' => __DIR__ . '/../../', -
wk-google-analytics/tags/1.11.0/wk-ga.php
r2893569 r2922648 5 5 * Plugin URI: https://wordpress.org/plugins/wk-google-analytics/ 6 6 * Description: Deploy Google Analytics on your website without having to edit code and without tracking your own visits. You can exclude any logged in user from this and enable tracking solely for them. 7 * Version: 1.1 0.17 * Version: 1.11.0 8 8 * Author: WEBKINDER 9 9 * Author URI: https://www.webkinder.ch/ -
wk-google-analytics/trunk/lib/Settings.php
r2715258 r2922648 5 5 class Settings 6 6 { 7 8 /** 9 * Add an options page under 'Settings' 7 /** 8 * Add an options page under 'Settings'. 10 9 * 11 10 * @since 1.0 12 11 * @see https://codex.wordpress.org/Function_Reference/add_options_page 13 * 14 */ 15 function settings_page() 12 */ 13 public function settings_page() 16 14 { 17 15 add_options_page( … … 20 18 'manage_options', 21 19 'google_analytics', 22 array($this, "settings_content") 23 ); 24 } 25 26 27 /** 28 * Ouputs the markup for the options page 20 [$this, 'settings_content'] 21 ); 22 } 23 24 /** 25 * Ouputs the markup for the options page. 29 26 * 30 27 * @since 1.0 31 * 32 */ 33 function settings_content() 34 { 35 36 if (!isset($_REQUEST['settings-updated'])) 28 */ 29 public function settings_content() 30 { 31 if (!isset($_REQUEST['settings-updated'])) { 37 32 $_REQUEST['settings-updated'] = false; 38 ?> 33 } 34 ?> 39 35 <div class="wrap"> 40 36 <h2><?php echo esc_html(get_admin_page_title()); ?></h2> 41 <?php if (false !== $_REQUEST['settings-updated']) :?>37 <?php if (false !== $_REQUEST['settings-updated']) { ?> 42 38 <div class="updated fade"> 43 39 <p> … … 47 43 </p> 48 44 </div> 49 <?php endif;?>45 <?php } ?> 50 46 <div class="wk-left-part"> 51 47 <form id="wk-google-analytics-settings" method="post" action="options.php"> … … 60 56 } 61 57 62 63 /** 64 * Registers all the settings separately 58 /** 59 * Registers all the settings separately. 65 60 * 66 61 * @since 1.0 … … 68 63 * @see https://codex.wordpress.org/Function_Reference/add_settings_section 69 64 * @see https://codex.wordpress.org/Function_Reference/add_settings_field 70 * 71 */ 72 function register_settings() 73 { 74 65 */ 66 public function register_settings() 67 { 75 68 add_settings_section( 76 69 'google_analytics', 77 70 '', 78 array($this, 'settings_header'), 79 'google_analytics' 80 ); 81 82 /** 83 * @since 1.0 84 */ 71 [$this, 'settings_header'], 72 'google_analytics' 73 ); 74 75 // @since 1.0 85 76 register_setting( 86 77 'wk_ga_google_analytics', … … 90 81 add_settings_field( 91 82 'ga_tracking_code', 92 __('Google Analytics Tracking ID', 'wk-google-analytics'), 93 array($this, 'tracking_code_field'), 94 'google_analytics', 95 'google_analytics' 96 ); 97 98 /** 99 * @since 1.0 100 */ 83 __('Google Analytics 4 Stream-ID', 'wk-google-analytics'), 84 [$this, 'tracking_code_field'], 85 'google_analytics', 86 'google_analytics' 87 ); 88 89 // @since 1.0 101 90 register_setting( 102 91 'wk_ga_google_analytics', … … 107 96 'ga_anonymize_ip', 108 97 __('IP Anonymization', 'wk-google-analytics'), 109 array($this, 'anonymize_ip_field'), 110 'google_analytics', 111 'google_analytics' 112 ); 113 114 /** 115 * @since 1.1 116 */ 98 [$this, 'anonymize_ip_field'], 99 'google_analytics', 100 'google_analytics' 101 ); 102 103 // @since 1.1 117 104 register_setting( 118 105 'wk_ga_google_analytics', … … 123 110 'track_logged_in', 124 111 __('Track logged in users', 'wk-google-analytics'), 125 array($this, 'track_logged_in_field'), 126 'google_analytics', 127 'google_analytics' 128 ); 129 130 /** 131 * @since 1.2 132 */ 112 [$this, 'track_logged_in_field'], 113 'google_analytics', 114 'google_analytics' 115 ); 116 117 // @since 1.2 133 118 register_setting( 134 119 'wk_ga_google_analytics', … … 139 124 'ga_use_tag_manager', 140 125 __('Use Google Tag Manager instead', 'wk-google-analytics'), 141 array($this, 'use_tag_manager_field'), 142 'google_analytics', 143 'google_analytics' 144 ); 145 146 /** 147 * @since 1.2 148 */ 126 [$this, 'use_tag_manager_field'], 127 'google_analytics', 128 'google_analytics' 129 ); 130 131 // @since 1.2 149 132 register_setting( 150 133 'wk_ga_google_analytics', … … 155 138 'ga_tag_manager_id', 156 139 __('Google Tag Manager ID', 'wk-google-analytics'), 157 array($this, 'tag_manager_id_field'), 158 'google_analytics', 159 'google_analytics' 160 ); 161 } 162 163 164 /** 165 * Renders the header text for the settings page 166 * 167 * @since 1.6.2 168 * 169 */ 170 function settings_header() 140 [$this, 'tag_manager_id_field'], 141 'google_analytics', 142 'google_analytics' 143 ); 144 } 145 146 /** 147 * Renders the header text for the settings page. 148 * 149 * @since 1.6.2 150 */ 151 public function settings_header() 171 152 { 172 153 wp_enqueue_script('cookie-js'); 173 154 wp_enqueue_script('wk-ga-admin-js'); 174 ?> 175 155 ?> 176 156 <p><?php _e('Enter your Google Analytics tracking ID below. Should you use Google Tag Manager to deploy Google Analytics, enter your GTM Container ID in the respective field and tick the box “Use Google Tag Manager instead”.', 'wk-google-analytics'); ?> 177 157 </p> 178 179 <?php 180 } 181 182 /** 183 * Renders text input for the Google Analytics tracking code 184 * 185 * @since 1.6.2 186 * 187 */ 188 function tracking_code_field() 189 { 190 158 <?php 159 } 160 161 /** 162 * Renders text input for the Google Analytics tracking code. 163 * 164 * @since 1.6.2 165 */ 166 public function tracking_code_field() 167 { 191 168 $field = 'ga_tracking_code'; 192 169 $value = esc_attr(get_option($field)); 193 170 194 ?> 195 196 <input type="text" name="<?php echo $field; ?>" placeholder="UA-XXXXXXXX-X" value="<?php echo $value; ?>" /> 197 198 <?php 199 } 200 201 /** 202 * Renders checkbox for the anonymize IP's option 203 * 204 * @since 1.6.2 205 * 206 */ 207 function anonymize_ip_field() 208 { 209 171 ?> 172 <input type="text" name="<?php echo $field; ?>" placeholder="G-XXXXXXXXXX" value="<?php echo $value; ?>" /> 173 <?php 174 } 175 176 /** 177 * Renders checkbox for the anonymize IP's option. 178 * 179 * @since 1.6.2 180 */ 181 public function anonymize_ip_field() 182 { 210 183 $field = 'ga_anonymize_ip'; 211 184 $value = get_option($field); 212 $value = ( $value !== false) ? $value : true;213 214 ?>185 $value = (false !== $value) ? $value : true; 186 187 ?> 215 188 216 189 <div class="anonymize-ip-tooltip"> … … 229 202 } 230 203 </style> 231 232 <?php 233 234 } 235 236 /** 237 * Renders checkbox for the track logged in users option 238 * 239 * @since 1.6.2 240 * 241 */ 242 function track_logged_in_field() 243 { 244 204 <?php 205 } 206 207 /** 208 * Renders checkbox for the track logged in users option. 209 * 210 * @since 1.6.2 211 */ 212 public function track_logged_in_field() 213 { 245 214 $field = 'track_logged_in'; 246 215 $value = get_option($field); 247 216 248 ?> 249 217 ?> 250 218 <input type="checkbox" name="<?php echo $field; ?>" value="1" <?php checked($value); ?> /> 251 252 <?php 253 254 } 255 256 /** 257 * Renders checkbox for the use tag manager option 258 * 259 * @since 1.6.2 260 * 261 */ 262 function use_tag_manager_field() 263 { 264 219 <?php 220 221 } 222 223 /** 224 * Renders checkbox for the use tag manager option. 225 * 226 * @since 1.6.2 227 */ 228 public function use_tag_manager_field() 229 { 265 230 $field = 'ga_use_tag_manager'; 266 231 $value = get_option($field); 267 232 268 ?> 269 233 ?> 270 234 <input type="checkbox" name="<?php echo $field; ?>" value="1" <?php checked($value); ?> /> 271 272 <?php 273 274 } 275 276 /** 277 * Renders text field for the Google Tag Manager ID 278 * 279 * @since 1.6.2 280 * 281 */ 282 function tag_manager_id_field() 283 { 284 235 <?php 236 237 } 238 239 /** 240 * Renders text field for the Google Tag Manager ID. 241 * 242 * @since 1.6.2 243 */ 244 public function tag_manager_id_field() 245 { 285 246 $field = 'ga_tag_manager_id'; 286 247 $value = esc_attr(get_option($field)); 287 248 288 ?> 289 249 ?> 290 250 <input type="text" name="<?php echo $field; ?>" placeholder="GTM-XXXXXX" value="<?php echo $value; ?>" /> 291 292 251 <?php 293 252 -
wk-google-analytics/trunk/readme.txt
r2893569 r2922648 5 5 Tested up to: 6.2 6 6 Requires PHP: 7.2 7 Stable tag: 1.1 0.17 Stable tag: 1.11.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 33 34 34 == Changelog == 35 36 = 1.11.0 = 37 38 * Renamed UA to G in settings for better understanding with the upcoming changes 35 39 36 40 = 1.10.1 = -
wk-google-analytics/trunk/vendor/autoload.php
r2893569 r2922648 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 3649409dbb62a90143e517b7b492fdbf::getLoader();7 return ComposerAutoloaderInit5c342c80332e199e3105d5a596e44f57::getLoader(); -
wk-google-analytics/trunk/vendor/composer/autoload_real.php
r2893569 r2922648 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 3649409dbb62a90143e517b7b492fdbf5 class ComposerAutoloaderInit5c342c80332e199e3105d5a596e44f57 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 3649409dbb62a90143e517b7b492fdbf', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit5c342c80332e199e3105d5a596e44f57', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 3649409dbb62a90143e517b7b492fdbf', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit5c342c80332e199e3105d5a596e44f57', 'loadClassLoader')); 30 30 31 31 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 33 33 require __DIR__ . '/autoload_static.php'; 34 34 35 call_user_func(\Composer\Autoload\ComposerStaticInit 3649409dbb62a90143e517b7b492fdbf::getInitializer($loader));35 call_user_func(\Composer\Autoload\ComposerStaticInit5c342c80332e199e3105d5a596e44f57::getInitializer($loader)); 36 36 } else { 37 37 $map = require __DIR__ . '/autoload_namespaces.php'; -
wk-google-analytics/trunk/vendor/composer/autoload_static.php
r2893569 r2922648 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 3649409dbb62a90143e517b7b492fdbf7 class ComposerStaticInit5c342c80332e199e3105d5a596e44f57 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 135 135 { 136 136 return \Closure::bind(function () use ($loader) { 137 $loader->prefixLengthsPsr4 = ComposerStaticInit 3649409dbb62a90143e517b7b492fdbf::$prefixLengthsPsr4;138 $loader->prefixDirsPsr4 = ComposerStaticInit 3649409dbb62a90143e517b7b492fdbf::$prefixDirsPsr4;139 $loader->classMap = ComposerStaticInit 3649409dbb62a90143e517b7b492fdbf::$classMap;137 $loader->prefixLengthsPsr4 = ComposerStaticInit5c342c80332e199e3105d5a596e44f57::$prefixLengthsPsr4; 138 $loader->prefixDirsPsr4 = ComposerStaticInit5c342c80332e199e3105d5a596e44f57::$prefixDirsPsr4; 139 $loader->classMap = ComposerStaticInit5c342c80332e199e3105d5a596e44f57::$classMap; 140 140 141 141 }, null, ClassLoader::class); -
wk-google-analytics/trunk/vendor/composer/installed.php
r2893569 r2922648 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '1.1 0.1',4 'version' => '1.1 0.1.0',3 'pretty_version' => '1.11.0', 4 'version' => '1.11.0.0', 5 5 'type' => 'wordpress-plugin', 6 6 'install_path' => __DIR__ . '/../../', … … 21 21 ), 22 22 'webkinder/wk-google-analytics' => array( 23 'pretty_version' => '1.1 0.1',24 'version' => '1.1 0.1.0',23 'pretty_version' => '1.11.0', 24 'version' => '1.11.0.0', 25 25 'type' => 'wordpress-plugin', 26 26 'install_path' => __DIR__ . '/../../', -
wk-google-analytics/trunk/wk-ga.php
r2893569 r2922648 5 5 * Plugin URI: https://wordpress.org/plugins/wk-google-analytics/ 6 6 * Description: Deploy Google Analytics on your website without having to edit code and without tracking your own visits. You can exclude any logged in user from this and enable tracking solely for them. 7 * Version: 1.1 0.17 * Version: 1.11.0 8 8 * Author: WEBKINDER 9 9 * Author URI: https://www.webkinder.ch/
Note: See TracChangeset
for help on using the changeset viewer.