# propertyhive/2.2.5/includes/class-ph-enquiry.php

Property Hive, version 2.2.5. 210 lines.

- Page: https://pluginprobe.com/plugins/propertyhive/2.2.5/code/includes/class-ph-enquiry.php
- Raw: https://pluginprobe.com/plugins/propertyhive/2.2.5/raw/includes/class-ph-enquiry.php
- Modified: 2025-05-13T08:38:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/propertyhive/2.2.5/code/includes/class-ph-enquiry.php#L10-L20`.

```php
<?php

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

/**
 * Enquiry
 *
 * The PropertyHive enquiry class handles enquiry data.
 *
 * @class       PH_Property
 * @version     1.0.0
 * @package     PropertyHive/Classes
 * @category    Class
 * @author      PropertyHive
 */
class PH_Enquiry {

    /** @public int Enquiry (post) ID */
    public $id;
    public $post_title;
    public $post_status;

    /**
     * Get the enquiry if ID is passed, otherwise the enquiry is new and empty.
     *
     * @access public
     * @param string $id (default: '')
     * @return void
     */
    public function __construct( $id = '' ) {
        if ( $id > 0 ) {
            $this->get_enquiry( $id );
        }
    }

    /**
     * Gets a enquiry from the database.
     *
     * @access public
     * @param int $id (default: 0)
     * @return bool
     */
    public function get_enquiry( $id = 0 ) {
        if ( ! $id ) {
            return false;
        }
        if ( $result = get_post( $id ) ) {
            $this->populate( $result );
            return true;
        }
        return false;
    }
    
    /**
     * __isset function.
     *
     * @access public
     * @param mixed $key
     * @return bool
     */
    public function __isset( $key ) {
        if ( ! $this->id ) {
            return false;
        }
        return metadata_exists( 'post', $this->id, '_' . $key );
    }

    /**
     * __get function.
     *
     * @access public
     * @param mixed $key
     * @return mixed
     */
    public function __get( $key ) {
        // Get values or default if not set
        $value = get_post_meta( $this->id, $key, true );
        if ($value == '')
        {
            $value = get_post_meta( $this->id, '_' . $key, true );
        }
        return $value;
    }
    
    /**
     * Populates a enquiry from the loaded post data.
     *
     * @access public
     * @param mixed $result
     * @return void
     */
    public function populate( $result ) {
        // Standard post data
        $this->id                  = $result->ID;
        $this->post_title          = $result->post_title;
        $this->post_status         = $result->post_status;
    }

    /**
     * Get the assigned negotiator
     *
     * @access public
     * @return string
     */
    public function get_negotiator()
    {
        if ($this->_negotiator_id == '' || $this->_negotiator_id == 0)
        {
            return '<em>-- ' . __( 'Unassigned', 'propertyhive' ) . ' --</em>';
        }
        else
        {
            $userdata = get_userdata( $this->_negotiator_id );
            if ( $userdata !== FALSE )
            {
                return $userdata->display_name;
            }
            else
            {
                return '<em>' . __( 'Unknown user', 'propertyhive' ) . '</em>';
            }
        }
    }

    /**
     * Get the assigned office
     *
     * @access public
     * @return string
     */
    public function get_office()
    {
        if ($this->_office_id == '' || $this->_office_id == 0)
        {
            return '<em>-- ' . __( 'Unassigned', 'propertyhive' ) . ' --</em>';
        }
        else
        {
            return get_the_title( $this->_office_id );
        }
    }

    /**
     * Get the associated properties
     *
     * @access public
     * @return array
     */
    public function get_properties()
    {
        $property_ids = array_filter( get_post_meta($this->id, 'property_id') );
        if ( count($property_ids) > 0 )
        {
            return $property_ids;
        }
        else
        {
            return array_filter( get_post_meta($this->id, '_property_id') );
        }
    }

    /**
     * Get the text for use in the Properties column of the enquiry list
     *
     * @access public
     * @return array
     */
    public function get_list_property_display_text( $property_id )
    {
        $property = new PH_Property((int)$property_id);

        if ( !isset($property->id) || empty($property->id) )
        {
            return __( 'Property not found', 'propertyhive' );
        }

        $display_parts = array();

        $display_parts[] = '<a href="' . esc_url(get_edit_post_link( $property_id )) . '">' . $property->get_formatted_full_address() . '</a>';

        $display_parts[] = $property->get_formatted_price();

        $property_status = '';

        $term_list = wp_get_post_terms($property_id, 'availability', array("fields" => "names"));

        if ( !is_wp_error($term_list) && is_array($term_list) && !empty($term_list) )
        {
            $property_status =  $term_list[0] . ' - ';
        }

        if (isset($property->_on_market) && $property->_on_market == 'yes')
        {
            $property_status .= __( 'On The Market', 'propertyhive' );
        }
        else
        {
            $property_status .= __( 'Not On The Market', 'propertyhive' );
        }

        $display_parts[] = $property_status;

        $display_parts = array_filter($display_parts);

        $display_parts = apply_filters( 'propertyhive_enquiry_list_property_display_parts', $display_parts, $property_id );

        return implode( '<br>', $display_parts );
    }
}

```
