%PDF- %PDF-
Direktori : /var/www/cwg/wp-content/plugins/searchwp-metrics/includes/ |
Current File : //var/www/cwg/wp-content/plugins/searchwp-metrics/includes/QueryPopularQueriesOverTimeDetails.php |
<?php namespace SearchWP_Metrics; // exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Class QueryPopularQueriesOverTimeDetails * @package SearchWP_Metrics */ class QueryPopularQueriesOverTimeDetails extends Query { protected $engine; protected $after; protected $before; protected $limit; private $defaults = array( 'engine' => 'default', 'after' => '30 days ago', 'before' => 'now', 'limit' => 10, 'limited_to_searches' => array(), ); function __construct( $args = array() ) { parent::__construct( $args ); $args = wp_parse_args( $args, $this->defaults ); $args = apply_filters( 'searchwp_metrics_query_popular_queries_over_time_details_args', $args ); if ( is_array( $args ) ) { foreach ( $args as $property => $val ) { $this->__set( $property, $val ); } } } function set_sql_fields() { $this->sql['select'] = "SELECT `{$this->tables['queries']}`.`id`, `{$this->tables['queries']}`.`query`, COUNT(`{$this->tables['searches']}`.`query`) AS searchcount"; } function set_sql_from() { $this->sql['from'] = "FROM `{$this->tables['searches']}`"; } function set_sql_join() { $this->sql['join'] = "LEFT JOIN `{$this->tables['queries']}` ON `{$this->tables['queries']}`.`id` = `{$this->tables['searches']}`.`query`"; } function set_sql_group_by() { $this->sql['group_by'] = "GROUP BY `{$this->tables['searches']}`.`query`"; } function set_sql_having() {} function set_sql_order_by() { $this->sql['order_by'] = "ORDER BY `searchcount` DESC, `{$this->tables['queries']}`.`query` ASC LIMIT " . absint( $this->limit ); } }