<?php
/*
Plugin Name: Counterize plugin: Countries
Plugin URI: http://www.gabsoftware.com/products/scripts/counterize/plugins/countries
Description: Display some information about the countries for the Counterize plugin
Version: 3.1.3
Author: Gabriel Hautclocq
Author URI: http://www.gabsoftware.com/
License: ISC
*/
// Security check. We do not want to be able to access our plugin directly.
if( !defined( 'WP_PLUGIN_DIR') )
{
die( "There is nothing to see here." );
}
//removes the plugin update notification
add_filter( 'site_transient_update_plugins', 'counterize_plugin_countries_disable_update_check' );
// Security check #2. We do not want to be able to load the plugin if Counterize isn't loaded before.
if( !defined( 'COUNTERIZE_CHECK') )
{
add_action('admin_notices', 'counterize_plugin_countries_admin_notice');
return;
}
/* constants */
// Counterize Countries plugin text domain
define( 'COUNTERIZE_PLUGIN_COUNTRIES_TD', COUNTERIZE_TD );
// Absolute path of the plugin from the server view
define( 'COUNTERIZE_PLUGIN_COUNTRIES_DIR', WP_PLUGIN_DIR . '/' . plugin_basename( dirname( __FILE__) ) );
// Public URL of the plugin
define( 'COUNTERIZE_PLUGIN_COUNTRIES_URL', WP_PLUGIN_URL . '/' . plugin_basename( dirname( __FILE__) ) );
/*
* Prevents WordPress from displaying wrong update notifications because
* this plugin is located in the same directory as Counterize
*/
function counterize_plugin_countries_disable_update_check( $value = '' )
{
if( ( isset( $value->response ) ) && ( count( $value->response ) ) )
{
$my_plugin = plugin_basename( dirname( __FILE__) ) . '/' . basename( __FILE__ );
// Get the list cut current active plugins
$active_plugins = get_option('active_plugins');
if( $active_plugins )
{
// Here we start to compare the $value->response
// items checking each against the active plugins list.
if( array_key_exists( $my_plugin, $value->response ) )
{
unset( $value->response[ $my_plugin ] );
}
}
}
return $value;
}
/*
* This function will be called if Counterize was not found or was not activated.
*/
function counterize_plugin_countries_admin_notice()
{
global $pagenow;
if( current_user_can( 'install_plugins' ) && $pagenow == 'plugins.php' )
{
echo '<div class="error"><p>';
echo 'The Counterize plugin "Countries" could not find Counterize. Please install and activate the <a target="_blank" href="plugin-install.php?tab=plugin-information&plugin=counterize&TB_iframe=false&width=600&height=550">Counterize plugin</a> first.';
echo '</p></div>';
}
}
class Counterize_Plugin_Countries
{
/*
* Our plugin constructor
*/
function __construct()
{
// Place your add_actions and add_filters here
add_action( 'init', array( &$this, 'counterize_plugin_countries_init_callback' ) );
} // end of constructor
/*
* Place your plugin initialization code here
* For example, load your plugin translations here, not before.
*/
public function counterize_plugin_countries_init_callback()
{
//increment the plugin counter
global $counterize_plugin_count;
$counterize_plugin_count++;
// Load the plugin localization (.mo files) located
// in the plugin "lang" subdirectory
if( function_exists( 'load_plugin_textdomain' ) )
{
load_plugin_textdomain(
COUNTERIZE_PLUGIN_COUNTRIES_TD,
COUNTERIZE_PLUGIN_COUNTRIES_DIR . '/lang',
plugin_basename( dirname(__FILE__) ) . '/lang'
);
}
//add a submenu page for our plugin
add_filter( 'counterize_dashboard_add_submenu', array( &$this, 'counterize_dashboard_add_submenu_countries_callback' ), 10, 2 );
add_action( 'counterize_show_data', array( &$this, 'counterize_show_data_countries' ), 10, 3 );
add_filter( 'counterize_check_data', array( &$this, 'counterize_check_data_countries' ), 10, 1 );
//add a submenu in the Counterize toolbar
add_action( 'counterize_toolbar_add_submenu', array( &$this, 'counterize_toolbar_add_submenu_callback' ), 10, 1 );
//add shortcodes
add_filter( 'counterize_shortcodes', array( &$this, 'counterize_plugin_countries_shortcodes_callback' ), 10, 3 );
//filters for the Counterize button in TinyMCE
add_filter( 'counterize_mce_js_type_filter', array( &$this, 'counterize_mce_js_type_filter_callback' ), 10, 1 );
//filter for the report option in Counterize settings
add_filter( 'counterize_report_what_filter', array( &$this, 'counterize_report_what_filter_callback' ), 10, 1 );
//generate the report
add_filter( 'counterize_report', array( &$this, 'counterize_plugin_report_callback' ), 10, 2 );
} // end of function
public function counterize_dashboard_add_submenu_countries_callback( $counterize_dashboard_handles, $capability )
{
$counterize_dashboard_handles['countries'] = add_submenu_page
(
COUNTERIZE_MENU_SLUG,
__( 'Counterize', COUNTERIZE_PLUGIN_COUNTRIES_TD ) . ' - ' . __( 'Dashboard', COUNTERIZE_PLUGIN_COUNTRIES_TD ) . ' - ' . __( 'Countries', COUNTERIZE_PLUGIN_COUNTRIES_TD ),
__( 'Countries', COUNTERIZE_PLUGIN_COUNTRIES_TD ),
$capability,
'counterize_dashboard_countries',
array( &$this, 'counterize_display_dashboard_countries_page_callback' )
);
//load the help tabs
add_action( 'load-' . $counterize_dashboard_handles['countries'], array( &$this, 'counterize_add_help_tabs_to_countries_callback' ) );
//insert the stylesheet and script
add_action( "admin_print_scripts-{$counterize_dashboard_handles['countries']}", 'counterize_javascript_head_callback' );
add_action( "admin_print_styles-{$counterize_dashboard_handles['countries']}" , 'counterize_stylesheet_head_callback' );
return $counterize_dashboard_handles;
}
public function counterize_toolbar_add_submenu_callback( $wp_admin_bar )
{
// add the All stats node to a our parent item
$args = array
(
'id' => 'counterize_toolbar_countries',
'title' => '<span class="ab-icon" style="margin-top: 3px; margin-right: 5px;"><img src="' . COUNTERIZE_PLUGIN_URL . '/countries_16x16.png" alt="Counterize icon" /></span>'
. __( 'Countries' ),
'href' => get_admin_url( null, 'admin.php?page=counterize_dashboard_countries' ), // link to the related Counterize Dashboard entry
'parent' => COUNTERIZE_TOOLBAR_STATS_GROUP_SLUG
);
$wp_admin_bar->add_node( $args );
}
/*
* display help tabs
*/
public function counterize_add_help_tabs_to_countries_callback()
{
$screen = get_current_screen();
$screen->add_help_tab
(
array
(
'id' => 'counterize-countries-plugin-help', // This should be unique for the screen.
'title' => __( 'Most visiting countries', COUNTERIZE_PLUGIN_COUNTRIES_TD ),
'content' => __( '<p>Displays a diagram of the countries of your visitors. The country information is obtained using the visitor IP address.</p>', COUNTERIZE_PLUGIN_COUNTRIES_TD )
. __( '<p>This is useful to find where your visitors come from and can help you to target your audience.</p>', COUNTERIZE_PLUGIN_COUNTRIES_TD )
// Use 'callback' instead of 'content' for a function callback that renders the tab content.
)
);
$screen->add_help_tab
(
array
(
'id' => 'counterize-countries24hr-plugin-help', // This should be unique for the screen.
'title' => __( 'Most visiting countries for the last 24 hours', COUNTERIZE_PLUGIN_COUNTRIES_TD ),
'content' => __( '<p>Displays a diagram of the countries of your visitors. The country information is obtained using the visitor IP address.</p>', COUNTERIZE_PLUGIN_COUNTRIES_TD )
. __( '<p>This diagram represents the visitors of the last 24 hours only.</p>', COUNTERIZE_PLUGIN_KEYWORDS_TD )
. __( '<p>This is useful to find where your visitors come from and can help you to target your audience.</p>', COUNTERIZE_PLUGIN_COUNTRIES_TD )
// Use 'callback' instead of 'content' for a function callback that renders the tab content.
)
);
$screen->set_help_sidebar
(
__( '<p>Choose a tab to learn more about the related diagram.</p>', COUNTERIZE_PLUGIN_COUNTRIES_TD )
);
}
public function counterize_display_dashboard_countries_page_callback()
{
// Amount to pass as option to the graphs...
$amount2 = counterize_get_option( 'amount2' );
if( $amount2 == '' || $amount2 == ' ' || ! is_numeric( $amount2 ) )
{
$amount2 = 10;
}
echo '
<div id="icon-plugins" class="icon32"></div>
<h1>' . __( 'Counterize', COUNTERIZE_PLUGIN_COUNTRIES_TD ) . ' - ' . __( 'Dashboard', COUNTERIZE_PLUGIN_COUNTRIES_TD ) . ' - ' . __( 'Countries', COUNTERIZE_PLUGIN_COUNTRIES_TD ) . '</h1>
';
$this->counterize_show_data_countries( true, $amount2, true );
//Print the footer
counterize_pagefooter();
}
public function counterize_show_data_countries( $admin = false, $amount2 = 10, $directcall = true )
{
if( $directcall )
{
?>
<p><?php _e( 'Need help about this page? Click on <strong>Help</strong> on the top of this page!', COUNTERIZE_PLUGIN_COUNTRIES_TD ); ?></p>
<?php
if( ! counterize_getamount() )
{
_e( "There's no data in the database - You can't see stats until you have data. ", COUNTERIZE_PLUGIN_COUNTRIES_TD );
return;
}
}
?>
<!-- Countries -->
<div class="wrap">
<?php $this->counterize_render_most_visiting_countries( $amount2 ); ?>
</div>
<div class="wrap">
<?php $this->counterize_render_most_visiting_countries24hrs( $amount2 ); ?>
</div>
<?php
}
// get the most visiting countries data feed
public function counterize_feed_most_visiting_countries( $number = 10, $header_override = '' )
{
global $wpdb;
$number = $wpdb->prepare( $number );
$sql = "SELECT `count` , `code` "
. " FROM `" . counterize_countryTable() . "`"
. " WHERE `count` > 0 "
. " ORDER BY `count` DESC "
. " LIMIT {$number}";
$rows = $wpdb->get_results( $sql );
$title = __( 'Most visiting countries', COUNTERIZE_PLUGIN_COUNTRIES_TD );
if( ! empty( $header_override ) )
{
$title = $header_override;
}
$feed = new CounterizeFeed( $title, __( 'Countries', COUNTERIZE_PLUGIN_COUNTRIES_TD ) );
foreach( $rows as $row )
{
$src = counterize_get_flag_url( $row->code );
$name = counterize_get_countryname( $row->code );
if( empty( $row->code ) || $row->code == ' ' || $row->code == '00' )
{
$label = __( 'unknown', COUNTERIZE_PLUGIN_COUNTRIES_TD );
}
else
{
$label = $name;
}
if( !empty( $src ) )
{
$img = new CounterizeFeedImg
(
$src,
sprintf( __( 'National flag of %s', COUNTERIZE_PLUGIN_COUNTRIES_TD ), $name ),
counterize_get_countryname( $row->code ) . " ({$row->code})",
'countryflag'
);
$feed->add_item_4( $row->count, $label, '', $img );
}
else
{
$feed->add_item_2( $row->count, $label );
}
unset( $src, $name, $label );
}
unset( $rows, $sql );
$feed->refresh_percentages();
return $feed;
}
// render the most visiting countries data feed
public function counterize_render_most_visiting_countries( $number = 10, $print_header = true, $header_override = '' )
{
$feed = $this->counterize_feed_most_visiting_countries( $number, $header_override );
$feed->render_feed_vertical( false, '100%', false, false, false, $print_header );
}
// get the most visiting countries data feed for the last 24 hours
public function counterize_feed_most_visiting_countries24hrs( $number = 10, $header_override = '' )
{
global $wpdb;
$number = $wpdb->prepare( $number );
$onedayago = date( 'Y-m-d H:i:s', time() - 86400 );
$sql = "SELECT COUNT( m.id ) AS `count`, c.code, c.code AS label "
. " FROM `" . counterize_logTable() . "` m, `" . counterize_countryTable() . "` c "
. " WHERE m.countryID = c.countryID"
. " AND m.timestamp >= '{$onedayago}'"
. " GROUP BY c.code "
. " ORDER BY `count` DESC "
. " LIMIT {$number}";
$rows = $wpdb->get_results( $sql );
$title = __( 'Most visiting countries for the last 24 hours', COUNTERIZE_PLUGIN_COUNTRIES_TD );
if( ! empty( $header_override ) )
{
$title = $header_override;
}
$feed = new CounterizeFeed( $title, __( 'Countries', COUNTERIZE_PLUGIN_COUNTRIES_TD ) );
foreach( $rows as $row )
{
$src = counterize_get_flag_url( $row->code );
$name = counterize_get_countryname( $row->code );
if( empty( $row->code ) || $row->code == ' ' || $row->code == '00' )
{
$label = __( 'unknown', COUNTERIZE_PLUGIN_COUNTRIES_TD );
}
else
{
$label = $name;
}
if( !empty( $src ) )
{
$img = new CounterizeFeedImg
(
$src,
sprintf( __( 'National flag of %s', COUNTERIZE_PLUGIN_COUNTRIES_TD ), $name ),
counterize_get_countryname( $row->code ) . " ({$row->code})",
'countryflag'
);
$feed->add_item_4( $row->count, $label, '', $img );
}
else
{
$feed->add_item_2( $row->count, $label );
}
unset( $src, $name, $label );
}
unset( $rows, $sql );
$feed->refresh_percentages();
return $feed;
}
// show the most visiting countries data feed for the last 24 hours
public function counterize_render_most_visiting_countries24hrs( $number = 10, $print_header = true, $header_override = '' )
{
$feed = $this->counterize_feed_most_visiting_countries24hrs( $number, $header_override );
$feed->render_feed_vertical( false, '100%', false, false, false, $print_header );
}
public function counterize_check_data_countries( $data )
{
//<!-- counterize_stats_countries_nb --> : Shows a list of the nb most visiting countries
$data = counterize_check_data
(
$data, '/(\<\!\-|\#)\-\s*counterize_stats_countries_([0-9]+)\s*\-(\-\>|\#)/', array( &$this, 'counterize_render_most_visiting_countries' ), 1
);
//<!-- counterize_stats_countries_24hrs_nb --> : Shows a list of the nb most visiting countries during the last 24 hours
$data = counterize_check_data
(
$data, '/(\<\!\-|\#)\-\s*counterize_stats_countries_24hrs_([0-9]+)\s*\-(\-\>|\#)/', array( &$this, 'counterize_render_most_visiting_countries24hrs' ), 1
);
return $data;
}
public function counterize_plugin_countries_shortcodes_callback( $output, $attr, $content = null )
{
extract( shortcode_atts( array
(
'type' => 'copyright',
'items' => 10,
'subitems' => 15,
'version' => 'yes',
'collapsible' => 'no',
'print_header' => 'yes',
'header' => '',
'period' => '24h',
'tn_width' => 50,
'tn_height' => 50
), $attr ) );
ob_start();
if( $type == 'countries' )
{
if( $period == '24h' )
{
$this->counterize_render_most_visiting_countries24hrs( $items, $print_header === 'yes', $header );
}
else
{
$this->counterize_render_most_visiting_countries( $items, $print_header === 'yes', $header );
}
}
$tmp = ob_get_contents();
if( ! empty( $tmp ) )
{
$output = $tmp;
}
ob_end_clean();
return $output;
}
public function counterize_mce_js_type_filter_callback( $content )
{
return $content . ' <option value=\"countries\">' . __( 'Countries', COUNTERIZE_PLUGIN_COUNTRIES_TD ) . '</option>\
';
}
public function counterize_report_what_filter_callback( $what )
{
$what['countries'] = __( 'Countries', COUNTERIZE_PLUGIN_COUNTRIES_TD );
return $what;
}
public function counterize_plugin_report_callback( $output, $what )
{
$items = counterize_get_option( 'amount2' );
ob_start();
if( in_array( 'countries', $what ) )
{
$this->counterize_render_most_visiting_countries( $items );
$this->counterize_render_most_visiting_countries24hrs( $items );
}
$tmp = ob_get_contents();
if( ! empty( $tmp ) )
{
$output .= $tmp;
}
ob_end_clean();
return $output;
}
}
/*
* Instanciate a new instance of Counterize_Plugin_Countries
*/
$counterize_plugins['countries'] = new Counterize_Plugin_Countries();
?>