$31 GRAYBYTE WORDPRESS FILE MANAGER $56

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.23
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/home/bravrvjk/kigalix.com/wp-content/themes/houzez/framework/classes/

HOME
Current File : /home/bravrvjk/kigalix.com/wp-content/themes/houzez/framework/classes//Houzez_Query.php
<?php
/**
 * Class Houzez_Query
 * Created by PhpStorm.
 * User: waqasriaz
 * Date: 28/09/16
 * Time: 11:22 PM
 */
if ( ! defined( 'ABSPATH' ) ) {
    exit;
}
if(!class_exists('Houzez_Query')) {
    class Houzez_Query {
        /**
         * Sets agency agents into loop
         *
         * @access public
         * @param null|int $post_id
         * @param null|int $count
         * @return void
         */
        public static function loop_agency_agents( $agency_id = null, $count = null ) {
            if ( null == $agency_id ) {
                $agency_id = get_the_ID();
            }

            $args = array(
                'post_type'         => 'houzez_agent',
                'posts_per_page'    => -1,
                'orderby' => 'title',
                'order' => 'ASC',
                'post_status' => 'publish',
                'meta_query'        => array(
                    array(
                        'key'       =>  'fave_agent_agencies',
                        'value'     => $agency_id,
                        'compare'   => 'LIKE',
                    ),
                ),
            );

            if ( ! empty( $count ) ) {
                $args['posts_per_page'] = $count;
            }

            return new WP_Query( $args );
        }


        /**
         * Sets agency agents ids
         *
         * @access public
         * @param null|int $agency_id
         * @param null|int $count
         * @return array
         */
        public static function loop_agency_agents_ids($agency_id = null, $count = null) {
            global $wpdb;

            // If no agency ID is provided, get the current post ID
            if ($agency_id === null) {
                $agency_id = get_the_ID();
            }

            // Generate a unique cache key
            $cache_key = 'houzez_agency_agents_ids_' . $agency_id;
            $cached_result = get_transient($cache_key);

            // Return cached result if available
            if ($cached_result !== false) {
                return $cached_result;
            }

            // Build the SQL query
            $sql = $wpdb->prepare("
                SELECT p.ID
                FROM {$wpdb->posts} p
                INNER JOIN {$wpdb->postmeta} pm ON p.ID = pm.post_id
                WHERE p.post_type = %s
                AND p.post_status = %s
                AND pm.meta_key = %s
                AND pm.meta_value = %d
                ORDER BY p.post_title ASC
            ", 'houzez_agent', 'publish', 'fave_agent_agencies', $agency_id);

            // Execute the query and get the results
            $agent_ids = $wpdb->get_col($sql);

            // Cache the result for 12 hours
            set_transient($cache_key, $agent_ids, 12 * HOUR_IN_SECONDS);

            return $agent_ids;
        }

        /**
         * Gets agency agents ids
         *
         * @access public
         * @param null|int $post_id
         * @return array
         */
        public static function get_agency_agents_ids( $agency_id = null ) {
            if ( null == $agency_id ) {
                $agency_id = get_the_ID();
            }

            $agent_ids_array = array();
            $args = array(
                'post_type'         => 'houzez_agent',
                'posts_per_page'    => -1,
                'fields'         => 'ids',
                'post_status' => 'publish',
                'meta_query'        => array(
                    array(
                        'key'       => 'fave_agent_agencies',
                        'value'     => $agency_id,
                        'compare'   => '=',
                    ),
                ),
            );

            $qry = new WP_Query( $args );
            $agent_ids_array = $qry->posts;

            return $agent_ids_array;
        }

        /**
         * Gets agency agents
         *
         * @access public
         * @param null|int $post_id
         * @return WP_Query
         */
        public static function get_agency_agents( $agency_id = null ) {
            loop_agency_agents($agency_id);
        }

        /**
         * Gets all agents
         *
         * @access public
         * @param int $count
         * @return WP_Query
         */
        public static function get_agents( $count = -1) {
            $args = array(
                'post_type'         => 'agent',
                'posts_per_page'    => $count,
                'post_status' => 'publish'
            );

            return new WP_Query( $args );
        }

        /**
         * Sets agency agents properties into loop
         *
         * @access public
         * @param null|int $agent_ids
         * @return WP_Query
         */
        public static function loop_get_agency_agents_properties( $agent_ids = null ) {
            if ( null == $agent_ids ) {
                return;
            }

            $args = array(
                'post_type'         => 'property',
                'posts_per_page'    => -1,
                'post_status' => 'publish',
                'meta_query'        => array(
                    array(
                        'key'       =>  'fave_agents',
                        'value'     => $agent_ids,
                        'compare'   => 'IN',
                    ),
                ),
            );

            $args = apply_filters( 'houzez_sold_status_filter', $args );

            return new WP_Query( $args );
        }

        /**
         * Get properties ids by agent
         *
         * @access public
         * @param null|int $agent_ids
         * @return WP_Query
         */
        public static function get_property_ids_by_agents($agent_ids) {
            $args = array(
                'post_type' => 'property',
                'post_status' => 'publish',
                'posts_per_page' => -1,
                'fields' => 'ids',
                'meta_query' => array(
                    'relation' => 'AND',
                    array(
                        'key' => 'fave_agents',
                        'value' => $agent_ids,
                        'compare' => 'IN',
                    ),
                    array(
                        'key' => 'fave_agent_display_option',
                        'value' => 'agent_info',
                        'compare' => '=',
                    ),
                ),
            );

            $args = apply_filters( 'houzez_sold_status_filter', $args );

            $property_query = new WP_Query($args);

            return $property_query->posts;
        }

        /**
         * Get properties ids by agency
         *
         * @access public
         * @param null|int $agent_ids
         * @return WP_Query
         */
        public static function get_property_ids_by_agency($agency_id) {
            $args = array(
                'post_type' => 'property',
                'post_status' => 'publish',
                'posts_per_page' => -1,
                'fields' => 'ids',
                'meta_query' => array(
                    'relation' => 'AND',
                    array(
                        'key'     => 'fave_property_agency',
                        'value'   => $agency_id,
                        'compare' => '='
                    ),
                    array(
                        'key'     => 'fave_agent_display_option',
                        'value'   => 'agency_info',
                        'compare' => '='
                    )
                ),
            );

            $args = apply_filters( 'houzez_sold_status_filter', $args );

            $property_query = new WP_Query($args);

            return $property_query->posts;
        }


        /**
         * Sets agency agents properties into loop
         *
         * @access public
         * @param null|int $agent_ids
         * @return WP_Query
         */
        public static function loop_get_agent_properties_ids( $agent_ids = null ) {
            
            $properties_ids_array = array();
            
            if ( null == $agent_ids ) {
                return $properties_ids_array;
            }

            $args = array(
                'post_type'         => 'property',
                'posts_per_page'    => -1,
                'post_status' => 'publish',
                'fields'         => 'ids',
                'meta_query'        => array(
                    array(
                        'key'       =>  'fave_agents',
                        'value'     => $agent_ids,
                        'compare'   => 'IN',
                    ),
                ),
            );

            $args = apply_filters( 'houzez_sold_status_filter', $args );

            $qry = new WP_Query( $args );
            $properties_ids_array = $qry->posts;

            return $properties_ids_array;
        }

        /**
         * Sets agency agents properties into loop
         *
         * @access public
         * @param null|int $property_ids
         * @return WP_Query
         */
        public static function get_agent_properties_ids_by_agent_id( $agent_id = 0 ) {
        

            $property_ids = array();
            
            if ( empty( $agent_id ) ) {
                return $property_ids;
            }

            $args = array(
                'post_type'         => 'property',
                'posts_per_page'    => -1,
                'post_status' => 'publish',
                'fields'         => 'ids',
                'meta_query' => array(
                    'relation' => 'AND',
                    array(
                        'key' => 'fave_agents',
                        'value' => $agent_id,
                        'compare' => '='
                    ),
                    array(
                        'key' => 'fave_agent_display_option',
                        'value' => 'agent_info',
                        'compare' => '='
                    )
                )
            );

            $args = apply_filters( 'houzez_sold_status_filter', $args );

            $qry = new WP_Query( $args );
            $property_ids = $qry->posts;

            return $property_ids;
        }

        /**
         * Sets author properties into loop
         *
         * @access public
         * @param null|int $author is
         * @return WP_Query
         */
        public static function loop_get_author_properties_ids( $author_id = null ) {
            
            $properties_ids_array = array();
            
            if ( null == $author_id ) {
                return $properties_ids_array;
            }

            $args = array(
                'post_type'         => 'property',
                'posts_per_page'    => -1,
                'post_status' => 'publish',
                'fields'         => 'ids',
                'author' => $author_id,
            );

            $args = apply_filters( 'houzez_sold_status_filter', $args );

            $qry = new WP_Query( $args );
            return $qry->posts;
        }

        /**
         * Sets agency properties into loop
         *
         * @access public
         * @param null|int $post_id
         * @return void
         */
        public static function loop_agency_properties( $agency_id = null ) {
            if ( null == $agency_id ) {
                $agency_id = get_the_ID();
            }

            global $paged;
            if ( is_front_page()  ) {
                $paged = (get_query_var('page')) ? get_query_var('page') : 1;
            }

            $tax_query = array();

            if ( isset( $_GET['tab'] ) && !empty($_GET['tab']) && $_GET['tab'] != "reviews") {
                $tax_query[] = array(
                    'taxonomy' => 'property_status',
                    'field' => 'slug',
                    'terms' => $_GET['tab']
                );
            }

            $args = array(
                'post_type' => 'property',
                'posts_per_page' => houzez_option('num_of_agency_listings', 9),
                'paged' => $paged,
                'post_status' => 'publish',
                'meta_query' => array(
                    'relation' => 'AND',
                    array(
                        'key' => 'fave_property_agency',
                        'value' => $agency_id,
                        'compare' => '='
                    ),
                    array(
                        'key' => 'fave_agent_display_option',
                        'value' => 'agency_info',
                        'compare' => '='
                    ),
                )
            );

            $args = apply_filters( 'houzez_sold_status_filter', $args );

            $count = count($tax_query);
            if($count > 0 ) {
                $args['tax_query'] = $tax_query;
            }

            $args = houzez_prop_sort($args);

            $agency_qry = new WP_Query( $args );
            return $agency_qry;
        }

        /**
         * Sets agency properties into loop
         *
         * @access public
         * @param null|int $post_id
         * @return IDs
         */

        public static function loop_agency_properties_ids( $agency_id = null ) {
            if ( null == $agency_id ) {
                $agency_id = get_the_ID();
            }

            global $paged;
            if ( is_front_page()  ) {
                $paged = (get_query_var('page')) ? get_query_var('page') : 1;
            }

            $properties_ids_array = array();

            $agency_listing_args = array(
                'post_type' => 'property',
                'posts_per_page' => -1,
                'post_status' => 'publish',
                'fields'         => 'ids',
            );

            $args = apply_filters( 'houzez_sold_status_filter', $args );

            $agents_array = array();
            $agency_agents_ids = Houzez_Query::loop_agency_agents_ids($agency_id);


            if( !empty($agency_agents_ids) ) {
                $agents_array = array(
                    'key' => 'fave_agents',
                    'value' => $agency_agents_ids,
                    'compare' => 'IN',
                );
            }

            $agency_listing_args['meta_query'] = array(
                'relation' => 'OR',
                $agents_array,
                array(
                    'relation' => 'AND',
                    array(
                        'key'     => 'fave_property_agency',
                        'value'   => $agency_id,
                        'compare' => '='
                    ),
                    array(
                        'key'     => 'fave_agent_display_option',
                        'value'   => 'agency_info',
                        'compare' => '='
                    )
                ),
            );

            $qry = new WP_Query( $agency_listing_args );

            if( $qry->have_posts() ):
                $properties_ids_array = $qry->posts;
            endif;
            Houzez_Query::loop_reset();

            return $properties_ids_array;
        }


        /**
         * Sets properties by ids loop
         *
         * @access public
         * @param null|int $post_id
         * @return void
         */
        public static function loop_properties_by_ids($ids) {
            
            global $paged;
            if ( is_front_page()  ) {
                $paged = (get_query_var('page')) ? get_query_var('page') : 1;
            }

            $tax_query = array();

            if ( isset( $_GET['tab'] ) && !empty($_GET['tab']) && $_GET['tab'] != "reviews") {
                $tax_query[] = array(
                    'taxonomy' => 'property_status',
                    'field' => 'slug',
                    'terms' => $_GET['tab']
                );
            }

            $args = array(
                'post_type' => 'property',
                'posts_per_page' => houzez_option('num_of_agency_listings', 9),
                'paged' => $paged,
                'post__in' => $ids,
                'post_status' => 'publish'
            );

            $args = apply_filters( 'houzez_sold_status_filter', $args );

            $count = count($tax_query);
            if($count > 0 ) {
                $args['tax_query'] = $tax_query;
            }

            $args = houzez_prop_sort($args);

            $agency_qry = new WP_Query( $args );
            return $agency_qry;
        }

        /**
         * Sets properties count by ids loop
         *
         * @access public
         * @param null|int $post_id
         * @return void
         */
        public static function loop_properties_by_ids_for_count($ids) {
            
            $args = array(
                'post_type' => 'property',
                'posts_per_page' => -1,
                'fields' => 'ids',
                'post__in' => $ids,
                'post_status' => 'publish'
            );

            $args = apply_filters( 'houzez_sold_status_filter', $args );

            $posts = get_posts($args);
            return count($posts);
        }


        /**
         * Sets agency properties count into loop
         *
         * @access public
         * @param null|int $post_id
         * @return void
         */
        public static function agency_properties_count( $agency_id = null ) {
            if ( null == $agency_id ) {
                $agency_id = get_the_ID();
            }

            $args = array(
                'post_type' => 'property',
                'posts_per_page' => -1,
                'fields' => 'ids',
                'post_status' => 'publish',
                'meta_query' => array(
                    'relation' => 'AND',
                    array(
                        'key' => 'fave_property_agency',
                        'value' => $agency_id,
                        'compare' => '='
                    ),
                    array(
                        'key' => 'fave_agent_display_option',
                        'value' => 'agency_info',
                        'compare' => '='
                    ),
                )
            );

            $args = apply_filters( 'houzez_sold_status_filter', $args );

            $posts = get_posts($args);
            return count($posts);
        }


        /**
         * Sets agent properties count into loop
         *
         * @access public
         * @param null|int $post_id
         * @return void
         */
        public static function author_properties_count( $author_id = null ) {
            if ( null == $author_id ) {
                $author_id = get_the_ID();
            }

            $args = array(
                'post_type' => 'property',
                'posts_per_page' => -1,
                'post_status' => 'publish',
                'author' => $author_id
            );

            $args = apply_filters( 'houzez_sold_status_filter', $args );

            $qry = new WP_Query( $args );
            return $qry->post_count;
        }

        /**
         * Sets agent properties count into loop
         *
         * @access public
         * @param null|int $post_id
         * @return void
         */
        public static function agent_properties_count( $agent_id = null ) {
            if ( null == $agent_id ) {
                $agent_id = get_the_ID();
            }

            $args = array(
                'post_type' => 'property',
                'post_status' => 'publish',
                'fields'         => 'ids',
                'meta_query' => array(
                    'relation' => 'AND',
                    array(
                        'key' => 'fave_agents',
                        'value' => $agent_id,
                        'compare' => '='
                    ),
                    array(
                        'key' => 'fave_agent_display_option',
                        'value' => 'agent_info',
                        'compare' => '='
                    )
                )
            );

            $args = apply_filters( 'houzez_sold_status_filter', $args );

            $qry = new WP_Query( $args );
            return $qry->found_posts;
        }

        /**
         * Sets agency agents properties count
         *
         * @access public
         * @param null|int $post_id
         * @return void
         */
        public static function get_agency_agents_properties_count($agent_ids) {
            $args = array(
                'post_type' => 'property',
                'post_status' => 'publish',
                'posts_per_page' => -1,
                'fields' => 'ids',
                'meta_query' => array(
                    'relation' => 'AND',
                    array(
                        'key' => 'fave_agents',
                        'value' => $agent_ids,
                        'compare' => 'IN',
                    ),
                    array(
                        'key' => 'fave_agent_display_option',
                        'value' => 'agent_info',
                        'compare' => '=',
                    ),
                ),
            );

            $args = apply_filters( 'houzez_sold_status_filter', $args );
            
            $property_query = new WP_Query($args);

            return $property_query->found_posts;
        }

        /**
         * Sets agent properties into loop
         *
         * @access public
         * @param null|int $post_id
         * @return void
         */
        public static function loop_agent_properties( $agent_id = null ) {
            global $paged;

            if ( is_front_page()  ) {
                $paged = (get_query_var('page')) ? get_query_var('page') : 1;
            }

            if ( null == $agent_id ) {
                $agent_id = get_the_ID();
            }

            $tax_query = array();

            $taxonomy = isset( $_GET['tax'] ) ? $_GET['tax'] : 'property_status';


            if ( isset( $_GET['tab'] ) && !empty($_GET['tab']) && $_GET['tab'] != "reviews" ) {
                $tax_query[] = array(
                    'taxonomy' => esc_attr($taxonomy),
                    'field' => 'slug',
                    'terms' => esc_attr($_GET['tab'])
                );
            }

            $args = array(
                'post_type' => 'property',
                'post_status' => 'publish',
                'paged' => $paged,
                'meta_query' => array(
                    'relation' => 'AND',
                    array(
                        'key' => 'fave_agents',
                        'value' => $agent_id,
                        'compare' => '='
                    ),
                    array(
                        'key' => 'fave_agent_display_option',
                        'value' => 'agent_info',
                        'compare' => '='
                    )
                )
            );

            $args['posts_per_page'] = apply_filters( 'houzez_agent_num_listings', houzez_option('num_of_agent_listings', 10) );

            $args = apply_filters( 'houzez_sold_status_filter', $args );

            $count = count($tax_query);
            if($count > 0 ) {
                $args['tax_query'] = $tax_query;
            }

            $args = houzez_prop_sort($args);

            $the_query = new WP_Query( $args );
            return $the_query;
        }


        /**
         * Resets current query
         *
         * @access public
         * @return void
         */
        public static function loop_reset() {
            wp_reset_query();
        }

        /**
         * Resets current query postdata
         *
         * @access public
         * @return void
         */
        public static function loop_reset_postdata() {
            wp_reset_postdata();
        }

        /**
         * Checks if there is another post in query
         *
         * @access public
         * @return bool
         */
        public static function loop_has_next() {
            global $wp_query;

            if ( $wp_query->current_post + 1 < $wp_query->post_count ) {
                return true;
            }

            return false;
        }
    }
}


Current_dir [ WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
8 May 2025 7.51 AM
bravrvjk / bravrvjk
0755
Houzez_Query.php
23.61 KB
28 Apr 2025 7.40 AM
bravrvjk / bravrvjk
0644
class-houzez-submit-property.php
30.304 KB
28 Apr 2025 7.40 AM
bravrvjk / bravrvjk
0644
houzez-lazy-load.php
3.406 KB
28 Apr 2025 7.40 AM
bravrvjk / bravrvjk
0644
houzez_data_source.php
15.951 KB
28 Apr 2025 7.40 AM
bravrvjk / bravrvjk
0644
script-loader.php
0.786 KB
28 Apr 2025 7.40 AM
bravrvjk / bravrvjk
0644
upgrade20.php
13.639 KB
28 Apr 2025 7.40 AM
bravrvjk / bravrvjk
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF