Tribe__Events__Pro__Geo_Loc::maybe_generate_geopoints_for_all_venues()
If the user pressed the button to fix all the venues without geo data, it shows a message showing the amount of venues fixed.
Source
File: src/Tribe/Geo_Loc.php
public function maybe_generate_geopoints_for_all_venues() {
if ( empty( $_GET['geoloc_fix_venues'] ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'geoloc_fix_venues' ) ) {
return;
}
$this->last_venues_fixed_count = $this->generate_geopoints_for_all_venues();
add_action( 'admin_notices', array( $this, 'show_fixed_notice' ) );
}