File "simple_google_analytics.php"
Full Path: /home/bechuebe/www/wp-content/plugins/clearfy/components/ga-cache/simple_google_analytics.php
File size: 4.83 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Plugin Name: Webcraftic Local Google Analytics
* Plugin URI: https://webcraftic.com
* Description: Old plugin name: Simple Google Analytics. To improve Google Page Speed indicators Analytics caching is needed. However, it can also slightly increase your website loading speed, because Analytics js files will load locally. The second case that you might need these settings is the usual Google Analytics connection to your website. You do not need to do this with other plugins or insert the tracking code into your theme.
* Author: Webcraftic <wordpress.webraftic@gmail.com>
* Version: 3.2.5
* Text Domain: simple-google-analytics
* Domain Path: /languages/
* Author URI: http://webcraftic.com
*/
// Exit if accessed directly
if( !defined('ABSPATH') ) {
exit;
}
/**
* Developers who contributions in the development plugin:
*
* Alexander Kovalev
* ---------------------------------------------------------------------------------
* Full plugin development.
*
* Email: alex.kovalevv@gmail.com
* Personal card: https://alexkovalevv.github.io
* Personal repo: https://github.com/alexkovalevv
* ---------------------------------------------------------------------------------
*/
/**
* -----------------------------------------------------------------------------
* CHECK REQUIREMENTS
* Check compatibility with php and wp version of the user's site. As well as checking
* compatibility with other plugins from Webcraftic.
* -----------------------------------------------------------------------------
*/
require_once(dirname(__FILE__) . '/libs/factory/core/includes/class-factory-requirements.php');
// @formatter:off
$plugin_info = array(
'prefix' => 'wbcr_gac_',
'plugin_name' => 'wbcr_gac',
'plugin_title' => __('Webcraftic Local Google Analytics', 'simple-google-analytics'),
// PLUGIN SUPPORT
'support_details' => array(
'url' => 'https://webcraftic.com',
'pages_map' => array(
'support' => 'support', // {site}/support
'docs' => 'docs' // {site}/docs
)
),
// PLUGIN ADVERTS
'render_adverts' => true,
'adverts_settings' => array(
'dashboard_widget' => true, // show dashboard widget (default: false)
'right_sidebar' => true, // show adverts sidebar (default: false)
'notice' => true, // show notice message (default: false)
),
// PLUGIN SUBSCRIBE FORM
'subscribe_widget' => true,
'subscribe_settings' => ['group_id' => '105425989'],
// FRAMEWORK MODULES
'load_factory_modules' => array(
array('libs/factory/bootstrap', 'factory_bootstrap_458', 'admin'),
array('libs/factory/forms', 'factory_forms_454', 'admin'),
array('libs/factory/pages', 'factory_pages_456', 'admin'),
array('libs/factory/templates', 'factory_templates_109', 'all'),
array('libs/factory/adverts', 'factory_adverts_134', 'admin')
)
);
$wga_compatibility = new Wbcr_Factory457_Requirements(__FILE__, array_merge($plugin_info, array(
'plugin_already_activate' => defined('WGA_PLUGIN_ACTIVE'),
'required_php_version' => '5.4',
'required_wp_version' => '4.2.0',
'required_clearfy_check_component' => false
)));
/**
* If the plugin is compatible, then it will continue its work, otherwise it will be stopped,
* and the user will throw a warning.
*/
if( !$wga_compatibility->check() ) {
return;
}
/**
* -----------------------------------------------------------------------------
* CONSTANTS
* Install frequently used constants and constants for debugging, which will be
* removed after compiling the plugin.
* -----------------------------------------------------------------------------
*/
// This plugin is activated
define('WGA_PLUGIN_ACTIVE', true);
define('WGA_PLUGIN_VERSION', $wga_compatibility->get_plugin_version());
define('WGA_PLUGIN_DIR', dirname(__FILE__));
define('WGA_PLUGIN_BASE', plugin_basename(__FILE__));
define('WGA_PLUGIN_URL', plugins_url(null, __FILE__));
define('WGA_PLUGIN_CACHE_FOLDER', 'wga-cache');
/**
* -----------------------------------------------------------------------------
* PLUGIN INIT
* -----------------------------------------------------------------------------
*/
require_once(WGA_PLUGIN_DIR . '/libs/factory/core/boot.php');
require_once(WGA_PLUGIN_DIR . '/includes/class-plugin.php');
try {
new WGA_Plugin(__FILE__, array_merge($plugin_info, array(
'plugin_version' => WGA_PLUGIN_VERSION,
'plugin_text_domain' => $wga_compatibility->get_text_domain(),
)));
} catch( Exception $e ) {
// Plugin wasn't initialized due to an error
define('WGA_PLUGIN_THROW_ERROR', true);
$wga_plugin_error_func = function () use ($e) {
$error = sprintf("The %s plugin has stopped. <b>Error:</b> %s Code: %s", 'Webcraftic Local Google Analytics', $e->getMessage(), $e->getCode());
echo '<div class="notice notice-error"><p>' . $error . '</p></div>';
};
add_action('admin_notices', $wga_plugin_error_func);
add_action('network_admin_notices', $wga_plugin_error_func);
}
// @formatter:on