示例#1
0
function wp_statistics_editor_meta_box($post)
{
    // If the widget isn't visible, don't output the stats as they take too much memory and CPU to compute for no reason.
    if (($is_visible = wp_statistics_is_wp_widget_visible('wp_statistics_editor_meta_box', $post->post_type)) !== true) {
        echo $is_visible;
        return;
    }
    // If the post isn't published yet, don't output the stats as they take too much memory and CPU to compute for no reason.
    if ($post->post_status != 'publish' && $post->post_status != 'private') {
        _e('This post is not yet published.', 'wp_statistics');
        return;
    }
    include_once dirname(__FILE__) . '/includes/log/widgets/page.php';
    wp_statistics_load_widget_css_and_scripts();
    wp_statistics_generate_page_postbox_content(null, $post->ID, 20, __('Hits in the last 20 days', 'wp_statistics'));
}
示例#2
0
function wp_statistics_get_widget_contents_callback()
{
    global $WP_Statistics, $wpdb;
    // this is how you get access to the database
    $widgets = array('about', 'browsers', 'map', 'countries', 'hits', 'hitsmap', 'page', 'pages', 'quickstats', 'recent', 'referring', 'search', 'summary', 'top.visitors', 'words');
    $view_cap = wp_statistics_validate_capability($WP_Statistics->get_option('read_capability', 'manage_options'));
    if (current_user_can($view_cap)) {
        $widget = '';
        if (array_key_exists('widget', $_POST)) {
            // Get the widget we're going to display.
            if (in_array($_POST['widget'], $widgets)) {
                $widget = $_POST['widget'];
            }
        }
        if ('map' == $widget || 'hitsmap' == $widget) {
            if ($WP_Statistics->get_option('map_type') == 'jqvmap') {
                $widget = 'jqv.map';
            } else {
                $widget = 'google.map';
            }
        }
        if ('' == $widget) {
            _e('No matching widget found!', 'wp_statistics');
            wp_die();
        }
        $ISOCountryCode = $WP_Statistics->get_country_codes();
        $search_engines = wp_statistics_searchengine_list();
        require $WP_Statistics->plugin_dir . '/includes/log/widgets/' . $widget . '.php';
        switch ($widget) {
            case 'summary':
                wp_statistics_generate_summary_postbox_content($search_engines);
                break;
            case 'quickstats':
                wp_statistics_generate_quickstats_postbox_content($search_engines);
                break;
            case 'browsers':
                wp_statistics_generate_browsers_postbox_content();
                break;
            case 'referring':
                wp_statistics_generate_referring_postbox_content();
                break;
            case 'countries':
                wp_statistics_generate_countries_postbox_content($ISOCountryCode);
                break;
            case 'jqv.map':
            case 'google.map':
                wp_statistics_generate_map_postbox_content($ISOCountryCode);
                break;
            case 'hits':
                wp_statistics_generate_hits_postbox_content();
                break;
            case 'search':
                wp_statistics_generate_search_postbox_content($search_engines);
                break;
            case 'words':
                wp_statistics_generate_words_postbox_content($ISOCountryCode);
                break;
            case 'page':
                $pageid = (int) $_POST['page-id'];
                wp_statistics_generate_page_postbox_content(null, $pageid);
                break;
            case 'pages':
                list($total, $uris) = wp_statistics_get_top_pages();
                wp_statistics_generate_pages_postbox_content($total, $uris);
                break;
            case 'recent':
                wp_statistics_generate_recent_postbox_content($ISOCountryCode);
                break;
            case 'top.visitors':
                wp_statistics_generate_top_visitors_postbox_content($ISOCountryCode);
                break;
            case 'about':
                wp_statistics_generate_about_postbox_content($ISOCountryCode);
                break;
            default:
                _e('ERROR: Widget not found!', 'wp_statistics');
        }
    } else {
        _e('Access denied!', 'wp_statistics');
    }
    wp_die();
    // this is required to terminate immediately and return a proper response
}
示例#3
0
echo __('Page Trend for Post ID', 'wp_statistics') . ' ' . $pageid . ' - ' . $title;
?>
</h2>

	<?php 
wp_statistics_date_range_selector(WP_STATISTICS_PAGES_PAGE, $daysToDisplay, null, null, $urlfields);
?>

	<div class="postbox-container" id="last-log">
		<div class="metabox-holder">
			<div class="meta-box-sortables">
				<div class="postbox">
					<div class="handlediv" title="<?php 
_e('Click to toggle', 'wp_statistics');
?>
"><br /></div>
					<h3 class="hndle"><span><?php 
_e('Page Trend', 'wp_statistics');
?>
</span></h3>
					<div class="inside">
						<?php 
include_once dirname(__FILE__) . '/widgets/page.php';
wp_statistics_generate_page_postbox_content($pageuri, $pageid, $daysToDisplay, null, $rangestart, $rangeend);
?>
					</div>
				</div>
			</div>
		</div>
	</div>
</div>
echo $urlfields;
?>
"><?php 
_e('1 Year', 'wp_statistics');
?>
</a></li>
	</ul>

	<div class="postbox-container" id="last-log">
		<div class="metabox-holder">
			<div class="meta-box-sortables">
				<div class="postbox">
					<div class="handlediv" title="<?php 
_e('Click to toggle', 'wp_statistics');
?>
"><br /></div>
					<h3 class="hndle"><span><?php 
_e('Page Trend', 'wp_statistics');
?>
</span></h3>
					<div class="inside">
						<?php 
include_once dirname(__FILE__) . '/widgets/page.php';
wp_statistics_generate_page_postbox_content($pageuri, $pageid, $daysToDisplay);
?>
					</div>
				</div>
			</div>
		</div>
	</div>
</div>