AlkantarClanX12
Your IP : 216.73.217.24
<?php
/**
* Telemetry class
*
* @package PopupMaker
* @copyright Copyright (c) 2024, Code Atlantic LLC
*/
if ( ! defined( 'ABSPATH' ) ) {
// Exit if accessed directly.
exit;
}
/**
* Our telemetry class.
*
* Handles sending usage data back to our servers for those who have opted into our telemetry.
*
* @since 1.11.0
*/
class PUM_Telemetry {
/**
* Initialization method
*/
public static function init() {
add_action( 'pum_daily_scheduled_events', [ __CLASS__, 'track_check' ] );
// Register the alert filter unconditionally — the alert itself
// is gated by `should_show_alert()` (capability + install age).
// Restricting to is_admin() meant the WP REST `pum_alert_list`
// surface didn't see this alert, so the notifications panel
// showed "all caught up" while the sidebar [!] kept counting it.
add_filter( 'pum_alert_list', [ __CLASS__, 'optin_alert' ] );
add_action( 'pum_alert_dismissed', [ __CLASS__, 'optin_alert_check' ], 10, 2 );
}
/**
* Prepares and sends data, if it is time to do so
*
* @since 1.11.0
*/
public static function track_check() {
if ( self::is_time_to_send() ) {
$data = self::setup_data();
self::send_data( $data );
set_transient( 'pum_tracking_last_send', true, 6 * DAY_IN_SECONDS );
}
}
/**
* Prepares telemetry data to be sent
*
* @return array
* @since 1.11.0
*/
public static function setup_data() {
global $wpdb;
// Retrieve current theme info.
$theme_data = wp_get_theme();
$theme = $theme_data->Name . ' ' . $theme_data->Version;
// Retrieve current plugin information.
if ( ! function_exists( 'get_plugins' ) ) {
include ABSPATH . '/wp-admin/includes/plugin.php';
}
$plugins = array_keys( get_plugins() );
$active_plugins = get_option( 'active_plugins', [] );
foreach ( $plugins as $key => $plugin ) {
if ( in_array( $plugin, $active_plugins, true ) ) {
// Remove active plugins from list so we can show active and inactive separately.
unset( $plugins[ $key ] );
}
}
$popups = 0;
foreach ( wp_count_posts( 'popup' ) as $status ) {
$popups += $status;
}
$popup_themes = 0;
foreach ( wp_count_posts( 'popup_theme' ) as $status ) {
$popup_themes += $status;
}
// Aggregates important settings across all popups.
$all_popups = pum_get_all_popups();
$triggers = [];
$cookies = [];
$conditions = [];
$location = [];
$sizes = [];
$sounds = [];
// Cycle through each popup.
foreach ( $all_popups as $popup ) {
$settings = PUM_Admin_Popups::fill_missing_defaults( $popup->get_settings() );
// Cycle through each trigger to count the number of unique triggers.
foreach ( $settings['triggers'] as $trigger ) {
if ( isset( $triggers[ $trigger['type'] ] ) ) {
$triggers[ $trigger['type'] ] += 1;
} else {
$triggers[ $trigger['type'] ] = 1;
}
}
// Cycle through each cookie to count the number of unique cookie.
foreach ( $settings['cookies'] as $cookie ) {
if ( isset( $cookies[ $cookie['event'] ] ) ) {
$cookies[ $cookie['event'] ] += 1;
} else {
$cookies[ $cookie['event'] ] = 1;
}
}
// Cycle through each condition to count the number of unique condition.
foreach ( $settings['conditions'] as $condition ) {
foreach ( $condition as $target ) {
if ( isset( $conditions[ $target['target'] ] ) ) {
$conditions[ $target['target'] ] += 1;
} else {
$conditions[ $target['target'] ] = 1;
}
}
}
// Add locations setting.
if ( isset( $location[ $settings['location'] ] ) ) {
$location[ $settings['location'] ] += 1;
} else {
$location[ $settings['location'] ] = 1;
}
// Add size setting.
if ( isset( $sizes[ $settings['size'] ] ) ) {
$sizes[ $settings['size'] ] += 1;
} else {
$sizes[ $settings['size'] ] = 1;
}
// Add opening sound setting.
if ( isset( $sounds[ $settings['open_sound'] ] ) ) {
$sounds[ $settings['open_sound'] ] += 1;
} else {
$sounds[ $settings['open_sound'] ] = 1;
}
}
$data = [
// UID.
'uid' => self::get_uuid(),
// Language Info.
'language' => get_bloginfo( 'language' ),
'charset' => get_bloginfo( 'charset' ),
// Server Info.
'php_version' => phpversion(),
'mysql_version' => $wpdb->db_version(),
'is_localhost' => self::is_localhost(),
'wp_env_type' => wp_get_environment_type(),
// WP Install Info.
'url' => get_site_url(),
'version' => Popup_Maker::$VER,
'wp_version' => get_bloginfo( 'version' ),
'theme' => $theme,
'active_plugins' => $active_plugins,
'inactive_plugins' => array_values( $plugins ),
// Popup Metrics.
'popups' => $popups,
'popup_themes' => $popup_themes,
'open_count' => get_option( 'pum_total_open_count', 0 ),
// TODO: Add form conversion tracking metric: get_option( 'pum_form_conversion_count', 0 ).
// Popup Maker Settings.
'block_editor_enabled' => ! pum_get_option( 'enable_classic_editor', false ),
'bypass_ad_blockers' => pum_get_option( 'bypass_adblockers' ),
'disable_taxonomies' => pum_get_option( 'disable_popup_category_tag' ),
'disable_asset_cache' => pum_get_option( 'disable_asset_caching' ),
'disable_open_tracking' => pum_get_option( 'disable_popup_open_tracking' ),
'default_email_provider' => pum_get_option( 'newsletter_default_provider', 'none' ),
// Aggregate Popup Settings.
'triggers' => $triggers,
'cookies' => $cookies,
'conditions' => $conditions,
'locations' => $location,
'sizes' => $sizes,
'sounds' => $sounds,
];
/**
* Filter telemetry data before sending.
*
* Allows extensions like Pro to add additional telemetry data.
*
* @since 1.20.0
*
* @param array $data Telemetry data array.
*/
return apply_filters( 'pum_telemetry_data', $data );
}
/**
* Sends check_in data
*
* @param array $data Telemetry data to send.
* @since 1.11.0
*/
public static function send_data( $data = [] ) {
self::api_call( 'check_in', $data );
}
/**
* Makes HTTP request to our API endpoint
*
* @param string $action The specific endpoint in our API.
* @param array $data Any data to send in the body.
* @return array|bool False if WP Error. Otherwise, array response from wp_remote_post.
* @since 1.11.0
*/
public static function api_call( $action = '', $data = [] ) {
$response = wp_remote_post(
'https://api.wppopupmaker.com/wp-json/pmapi/v2/' . $action,
[
'method' => 'POST',
'timeout' => 20,
'redirection' => 5,
'httpversion' => '1.1',
'blocking' => false,
'body' => $data,
'user-agent' => 'POPMAKE/' . Popup_Maker::$VER . '; ' . get_site_url(),
]
);
if ( is_wp_error( $response ) ) {
$error_message = $response->get_error_message();
pum_log_message( sprintf( 'Cannot send telemetry data. Error received was: %s', esc_html( $error_message ) ) );
return false;
}
return $response;
}
/**
* Adds admin notice if we haven't asked before.
*
* @param array $alerts The alerts currently in the alert system.
* @return array Alerts for the alert system.
* @since 1.11.0
*/
public static function optin_alert( $alerts ) {
if ( ! self::should_show_alert() ) {
return $alerts;
}
$alerts[] = [
'code' => 'pum_telemetry_notice',
'title' => '📊 ' . __( 'Help us make Popup Maker better', 'popup-maker' ),
'type' => 'info',
'category' => 'recommendation',
'message' => esc_html__( "Help us prioritize the features that matter most by sharing anonymous usage stats. No visitor data or popup content is ever collected.", 'popup-maker' ),
'priority' => 10,
'dismissible' => true,
'global' => false,
'actions' => [
[
'primary' => true,
'type' => 'action',
'action' => 'pum_optin_check_allow',
'text' => __( 'Allow', 'popup-maker' ),
],
[
'primary' => false,
'type' => 'action',
'action' => 'dismiss',
'text' => __( 'Do not allow', 'popup-maker' ),
],
[
'primary' => false,
'type' => 'link',
'action' => '',
'href' => 'https://wppopupmaker.com/docs/policies/the-data-the-popup-maker-plugin-collects/',
'text' => __( 'Learn more', 'popup-maker' ),
],
],
];
return $alerts;
}
/**
* Checks if any options have been clicked from admin notices.
*
* @param string $code The code for the alert.
* @param string $action Action taken on the alert.
*
* @since 1.11.0
*/
public static function optin_alert_check( $code, $action ) {
if ( 'pum_telemetry_notice' === $code ) {
if ( 'pum_optin_check_allow' === $action ) {
pum_update_option( 'telemetry', true );
}
}
}
/**
* Whether or not we should show optin alert
*
* @since 1.11.0
* @return bool True if alert should be shown
*/
public static function should_show_alert() {
return false === self::has_opted_in() && current_user_can( 'manage_options' ) && strtotime( self::get_installed_on() . ' +15 minutes' ) < time();
}
/**
* Determines if it is time to send telemetry data.
*
* @return bool True if it is time.
* @since 1.11.0
*/
public static function is_time_to_send() {
// Only send if admin has opted in.
if ( ! self::has_opted_in() ) {
return false;
}
// Send a maximum of once per week.
if ( get_transient( 'pum_tracking_last_send' ) ) {
return false;
}
return true;
}
/**
* Wrapper to check if site has opted into telemetry
*
* @return bool True if has opted into telemetry
* @since 1.11.0
*/
public static function has_opted_in() {
return false !== pum_get_option( 'telemetry', false );
}
/**
* Get the datetime string for when PM was installed.
*
* @return string
* @since 1.13.0
*/
public static function get_installed_on() {
$installed_on = get_option( 'pum_installed_on', false );
if ( ! $installed_on ) {
$installed_on = current_time( 'mysql' );
}
return $installed_on;
}
/**
* Determines if the site is in a local environment
*
* @return bool True for local
* @since 1.11.0
*/
public static function is_localhost() {
$url = network_site_url( '/' );
return stristr( $url, 'dev' ) !== false || stristr( $url, 'localhost' ) !== false || stristr( $url, ':8888' ) !== false;
}
/**
* Generates a new UUID for this site.
*
* @return string
* @since 1.11.0
*/
public static function add_uuid() {
$uuid = wp_generate_uuid4();
update_option( 'pum_site_uuid', $uuid );
return $uuid;
}
/**
* Retrieves the site UUID
*
* @return string
* @since 1.11.0
*/
public static function get_uuid() {
$uuid = get_option( 'pum_site_uuid', false );
if ( false === $uuid || ! wp_is_uuid( $uuid ) ) {
$uuid = self::add_uuid();
}
return $uuid;
}
}
Home - Capital GMC Buick Regina
Skip to content
{{ $t(category) }}
Error
{{vehicle.modelData.year}} {{vehicle.modelData.make}} {{vehicle.modelData.model}}
Starting from {{vehicle.modelData.startingPrice | moneyFormat(lang)}}
Welcome to Capital GMC BUICK – REGINA
Thank you for choosing Capital GMC Buick | Regina, your premier certified Buick and GMC dealership proudly serving drivers in Regina and the surrounding communities. Whether you’re searching for a brand-new Buick or GMC vehicle or a meticulously inspected pre-owned model, we have a diverse selection to match your needs and lifestyle.
Beyond our impressive inventory, we offer a seamless and stress-free financing experience through our well-connected finance centre, where our team of experts is dedicated to securing the best loan or lease options for you, quickly, transparently, and hassle-free.
But our commitment to you doesn’t stop at the sale. Our state-of-the-art service centre is staffed with skilled Buick and GMC technicians who use the latest equipment and genuine OEM parts to keep your vehicle running at its best. From routine maintenance to complex repairs, we’ve got you covered.
Experience top-tier customer service, quality vehicles, and expert care, all in one place. Visit Capital GMC Buick | Regina today or call us at 306-205-8072 with any questions. We’re here to help!
Ask a Question
Capital GMC Buick – Regina
Contact Us
Have a question or need assistance? Fill out the form and we will reach out to you as soon as possible.
Notice: JavaScript is required for this content.
CLOSE
Schedule a Visit
Let us know when you are coming and how we can assist you. We can ensure someone will be on hand to help you out at the desired date and time.
Notice: JavaScript is required for this content.
CLOSE
Find a Career
Have a look at our list of available positions and apply online today to join our team!
×
Opportunities to Grow
The auto industry is constantly changing and we want to continue to grow. We offer growth, leadership & mentorship programs to allow our staff to grow with us.
×
Competitive Salary
We have a significant earning potential with incentive-based pay in most roles. We also offer an employee referral bonus with paid bonuses.
×
Health & Dental
We offer a comprehensive benefits package including extended health, dental, and vision care. We also include paramedical, life insurance, paid sick leave, short & long-term disability coverages.
×
Vacation
We value our employees and want everyone to take their vacation time. We offer a minimum of 2 weeks vacation each year.
×
Training & Development
We have many opportunities for paid education and training in-house as well as training from the Manufacturer.
×
$10,000 Cash Giveaway – Terms & Conditions
All October long, stop by Capital GMC Buick Cadillac, to enter for your chance to win $10,000 cash. No purchase is required, but entries must be made in-store.
The contest is open to residents of Saskatchewan who are 18+. Dealership employees and their households are not eligible. Entries will be accepted from October 1 to October 31, 2025. A random draw will take place on November 1, 2025.
The prize is one $10,000 award, paid by cheque, and must be accepted as awarded. Winner will be contacted by phone or email and must respond within 7 days or another entry may be drawn. Odds of winning depend on the number of entries received.By entering, you agree that Capital Automotive Group may use your name and photo for winner announcements. The contest is governed by the laws of Saskatchewan.
Notice: JavaScript is required for this content.
CLOSE