Changeset 1989178
- Timestamp:
- 12/08/2018 12:37:25 PM (7 years ago)
- Location:
- wp-visitorflow
- Files:
-
- 10 edited
- 1 copied
-
tags/1.5.5 (copied) (copied from wp-visitorflow/trunk)
-
tags/1.5.5/assets/js/wp-visitorflow-frontend.js (modified) (1 diff)
-
tags/1.5.5/includes/classes/class-wp-visitorflow-admin.php (modified) (1 diff)
-
tags/1.5.5/includes/views/tables/table-summary.php (modified) (1 diff)
-
tags/1.5.5/readme.txt (modified) (3 diffs)
-
tags/1.5.5/wp-visitorflow.php (modified) (2 diffs)
-
trunk/assets/js/wp-visitorflow-frontend.js (modified) (1 diff)
-
trunk/includes/classes/class-wp-visitorflow-admin.php (modified) (1 diff)
-
trunk/includes/views/tables/table-summary.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wp-visitorflow.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-visitorflow/tags/1.5.5/assets/js/wp-visitorflow-frontend.js
r1961151 r1989178 3 3 wpvfURL += '?wpvf_referrer=' + encodeURIComponent(document.referrer); 4 4 wpvfURL += '&wpvf_page=' + encodeURIComponent(document.documentURI); 5 console.log(wpvfURL) 5 6 6 var wpvfRequest = new XMLHttpRequest(); 7 7 wpvfRequest.open('GET',wpvfURL); -
wp-visitorflow/tags/1.5.5/includes/classes/class-wp-visitorflow-admin.php
r1965312 r1989178 42 42 // Add hook to posts table 43 43 add_filter( 'manage_posts_columns' , array('WP_VisitorFlow_Admin', 'postsAddWpVisitorColumn') ); 44 add_action( 'manage_posts_custom_column' , array('WP_VisitorFlow_Admin', 'postsWpVisitorColumn' , 10, 2 ));44 add_action( 'manage_posts_custom_column' , array('WP_VisitorFlow_Admin', 'postsWpVisitorColumn'), 10, 2 ); 45 45 46 46 // Add hook to pages table 47 47 add_filter( 'manage_pages_columns', array('WP_VisitorFlow_Admin', 'pagesAddWpVisitorColumn' ) ); 48 add_action( 'manage_pages_custom_column' , array('WP_VisitorFlow_Admin', 'pagesWpVisitorColumn' , 10, 2 ));48 add_action( 'manage_pages_custom_column' , array('WP_VisitorFlow_Admin', 'pagesWpVisitorColumn'), 10, 2 ); 49 49 50 50 } -
wp-visitorflow/tags/1.5.5/includes/views/tables/table-summary.php
r1961151 r1989178 70 70 $compare = $db_info[ $counter['db_info_compare'] ]; 71 71 72 if ($compare > =0) {72 if ($compare > 0) { 73 73 $arrow = '0'; 74 74 $change = 100 * ($count - $compare) / $compare; -
wp-visitorflow/tags/1.5.5/readme.txt
r1980165 r1989178 5 5 Requires at least: 3.5 6 6 Requires PHP: 5.4 7 Tested up to: 4.9.87 Tested up to: 5.0 8 8 Stable tag: 1.5.4 9 9 License: GPLv2 or later … … 95 95 96 96 == Changelog == 97 = 1.5.5 = 98 * WordPress 5.0 ready, Bugfix links on pages and posts list 99 97 100 = 1.5.4 = 98 101 * Bugfix 404 pages … … 176 179 177 180 == Upgrade Notice == 181 = 1.5.5 = 182 * WordPress 5.0 ready, Bugfix links on pages and posts list 183 178 184 = 1.5.4 = 179 185 * Bugfix 404 pages -
wp-visitorflow/tags/1.5.5/wp-visitorflow.php
r1980164 r1989178 4 4 * Plugin URI: https://www.datacodedesign.de/index.php/wp-visitorflow/ 5 5 * Description: Detailed web analytics and visualization of your website's visitor flow 6 * Version: 1.5. 46 * Version: 1.5.5 7 7 * Author: Onno Gabriel, DataCodeDesign 8 8 * Author URI: http://www.onno-gabriel.de … … 35 35 36 36 // Global constants 37 define( 'WP_VISITORFLOW_VERSION', '1.5. 1' );37 define( 'WP_VISITORFLOW_VERSION', '1.5.5' ); 38 38 define( 'WP_VISITORFLOW_REQUIRED_PHP_VERSION', '5.4.0' ); 39 39 define( 'WP_VISITORFLOW_PLUGIN_PATH', trailingslashit( dirname( __FILE__ ) ) ); -
wp-visitorflow/trunk/assets/js/wp-visitorflow-frontend.js
r1961151 r1989178 3 3 wpvfURL += '?wpvf_referrer=' + encodeURIComponent(document.referrer); 4 4 wpvfURL += '&wpvf_page=' + encodeURIComponent(document.documentURI); 5 console.log(wpvfURL) 5 6 6 var wpvfRequest = new XMLHttpRequest(); 7 7 wpvfRequest.open('GET',wpvfURL); -
wp-visitorflow/trunk/includes/classes/class-wp-visitorflow-admin.php
r1965312 r1989178 42 42 // Add hook to posts table 43 43 add_filter( 'manage_posts_columns' , array('WP_VisitorFlow_Admin', 'postsAddWpVisitorColumn') ); 44 add_action( 'manage_posts_custom_column' , array('WP_VisitorFlow_Admin', 'postsWpVisitorColumn' , 10, 2 ));44 add_action( 'manage_posts_custom_column' , array('WP_VisitorFlow_Admin', 'postsWpVisitorColumn'), 10, 2 ); 45 45 46 46 // Add hook to pages table 47 47 add_filter( 'manage_pages_columns', array('WP_VisitorFlow_Admin', 'pagesAddWpVisitorColumn' ) ); 48 add_action( 'manage_pages_custom_column' , array('WP_VisitorFlow_Admin', 'pagesWpVisitorColumn' , 10, 2 ));48 add_action( 'manage_pages_custom_column' , array('WP_VisitorFlow_Admin', 'pagesWpVisitorColumn'), 10, 2 ); 49 49 50 50 } -
wp-visitorflow/trunk/includes/views/tables/table-summary.php
r1961151 r1989178 70 70 $compare = $db_info[ $counter['db_info_compare'] ]; 71 71 72 if ($compare > =0) {72 if ($compare > 0) { 73 73 $arrow = '0'; 74 74 $change = 100 * ($count - $compare) / $compare; -
wp-visitorflow/trunk/readme.txt
r1980165 r1989178 5 5 Requires at least: 3.5 6 6 Requires PHP: 5.4 7 Tested up to: 4.9.87 Tested up to: 5.0 8 8 Stable tag: 1.5.4 9 9 License: GPLv2 or later … … 95 95 96 96 == Changelog == 97 = 1.5.5 = 98 * WordPress 5.0 ready, Bugfix links on pages and posts list 99 97 100 = 1.5.4 = 98 101 * Bugfix 404 pages … … 176 179 177 180 == Upgrade Notice == 181 = 1.5.5 = 182 * WordPress 5.0 ready, Bugfix links on pages and posts list 183 178 184 = 1.5.4 = 179 185 * Bugfix 404 pages -
wp-visitorflow/trunk/wp-visitorflow.php
r1980164 r1989178 4 4 * Plugin URI: https://www.datacodedesign.de/index.php/wp-visitorflow/ 5 5 * Description: Detailed web analytics and visualization of your website's visitor flow 6 * Version: 1.5. 46 * Version: 1.5.5 7 7 * Author: Onno Gabriel, DataCodeDesign 8 8 * Author URI: http://www.onno-gabriel.de … … 35 35 36 36 // Global constants 37 define( 'WP_VISITORFLOW_VERSION', '1.5. 1' );37 define( 'WP_VISITORFLOW_VERSION', '1.5.5' ); 38 38 define( 'WP_VISITORFLOW_REQUIRED_PHP_VERSION', '5.4.0' ); 39 39 define( 'WP_VISITORFLOW_PLUGIN_PATH', trailingslashit( dirname( __FILE__ ) ) );
Note: See TracChangeset
for help on using the changeset viewer.