PATH:
home
/
niazsaze
/
public_html
/
wp-content
/
plugins
/
wp-statistics
/
includes
<?php namespace WP_STATISTICS; class Historical { /** * List Of Historical Category * * @var array */ public static $historical_cat = array( 'visitors', 'visits', 'uri' ); /** * Get historical data * * @param $type * @param string $id * * @return int|null|string */ public static function get($type, $id = '') { global $wpdb; # Default Count $count = 0; # Create SQL switch ($type) { case 'uri': $sql = "SELECT `value` FROM `" . DB::table('historical') . "` WHERE `category` = 'uri'"; break; case 'page': $sql = $wpdb->prepare("SELECT `value` FROM `" . DB::table('historical') . "` WHERE `category` = 'uri' AND `page_id` = %d", $id); break; case 'visitors': case 'visits': default: $sql = $wpdb->prepare("SELECT `value` FROM `" . DB::table('historical') . "` WHERE `category` = %s", $type); break; } # Get Count Dara $result = $wpdb->get_var($sql); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared # Return return $result > $count ? $result : $count; } /** * Check Is Empty Historical Table */ public static function isEmpty() { global $wpdb; return ($wpdb->get_var("SELECT COUNT(*) FROM " . DB::table('historical')) < 1); } }
[-] class-wp-statistics-geoip.php
[edit]
[-] defines.php
[edit]
[-] class-wp-statistics-privacy-exporter.php
[edit]
[-] template-functions.php
[edit]
[-] class-wp-statistics-helper.php
[edit]
[-] class-wp-statistics-rest-api.php
[edit]
[-] class-wp-statistics-search-engine.php
[edit]
[-] class-wp-statistics-schedule.php
[edit]
[-] class-wp-statistics-purge.php
[edit]
[-] class-wp-statistics-timezone.php
[edit]
[-] class-wp-statistics-shortcode.php
[edit]
[-] class-wp-statistics.php
[edit]
[-] class-wp-statistics-option.php
[edit]
[+]
api
[-] class-wp-statistics-user.php
[edit]
[-] class-wp-statistics-pages.php
[edit]
[-] class-wp-statistics-mail.php
[edit]
[-] class-wp-statistics-install.php
[edit]
[-] class-wp-statistics-meta-box.php
[edit]
[-] class-wp-statistics-uninstall.php
[edit]
[+]
defines
[-] class-wp-statistics-frontend.php
[edit]
[-] class-wp-statistics-historical.php
[edit]
[-] class-wp-statistics-user-online.php
[edit]
[-] class-wp-statistics-country.php
[edit]
[-] class-wp-statistics-db.php
[edit]
[-] class-wp-statistics-admin-bar.php
[edit]
[-] class-wp-statistics-referred.php
[edit]
[-] class-wp-statistics-privacy-erasers.php
[edit]
[-] class-wp-statistics-user-agent.php
[edit]
[-] class-wp-statistics-hits.php
[edit]
[+]
libraries
[-] class-wp-statistics-menus.php
[edit]
[+]
admin
[+]
..
[-] class-wp-statistics-ip.php
[edit]
[-] class-wp-statistics-exclusion.php
[edit]
[-] class-wp-statistics-widget.php
[edit]
[-] class-wp-statistics-visitor.php
[edit]