# propertyhive/2.2.6/includes/class-ph-contact.php

Property Hive, version 2.2.6. 186 lines.

- Page: https://pluginprobe.com/plugins/propertyhive/2.2.6/code/includes/class-ph-contact.php
- Raw: https://pluginprobe.com/plugins/propertyhive/2.2.6/raw/includes/class-ph-contact.php
- Modified: 2021-03-08T19:41:00+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.6/code/includes/class-ph-contact.php#L10-L20`.

```php
<?php

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

/**
 * Contact
 *
 * The Property Hive contact class handles contact data.
 *
 * @class       PH_Contact
 * @version     1.0.0
 * @package     PropertyHive/Classes
 * @category    Class
 * @author      PropertyHive
 */
class PH_Contact {

    /** @public int Contact (post) ID */
    public $id;

    /**
     * Get the contact if ID is passed, otherwise the contact is new and empty.
     *
     * @access public
     * @param string $id (default: '')
     * @return void
     */
    public function __construct( $id = '', $user_id = '' ) {

        if ( $user_id > 0 )
        {
            // We've been passed a user ID. Need to get contact ID based on user_id
            $contact_query = new WP_Query( array( 'post_type' => 'contact', 'meta_key' =>  '_user_id', 'meta_value' => $user_id, 'fields' => 'ids', 'posts_per_page' => 1 ) );

            if ( $contact_query->have_posts() )
            {
                while ( $contact_query->have_posts() )
                {
                    $contact_query->the_post();

                    $this->get_contact( get_the_ID() );
                }
            }

            wp_reset_postdata();
        }
        else
        {
            if ( $id > 0 ) {
                $this->get_contact( $id );
            }
        }
    }

    /**
     * Gets a contact from the database.
     *
     * @access public
     * @param int $id (default: 0)
     * @return bool
     */
    public function get_contact( $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 contact 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 full formatted address
     *
     * @access public
     * @return string
     */
    public function get_formatted_full_address( $separator = ', ' ) {
        // Standard post data
        
        $return = '';
        
        $company_name = $this->_company_name;
        if ($company_name != '')
        {
            $return .= $company_name;
        }
        $address_name_number = $this->_address_name_number;
        if ($address_name_number != '')
        {
            if ($return != '') { $return .= $separator; }
            $return .= $address_name_number;
        }
        $address_street = $this->_address_street;
        if ($address_street != '')
        {
            if ($return != '') { $return .= ' '; }
            $return .= $address_street;
        }
        $address_two = $this->_address_two;
        if ($address_two != '')
        {
            if ($return != '') { $return .= $separator; }
            $return .= $address_two;
        }
        $address_three = $this->_address_three;
        if ($address_three != '')
        {
            if ($return != '') { $return .= $separator; }
            $return .= $address_three;
        }
        $address_four = $this->_address_four;
        if ($address_four != '')
        {
            if ($return != '') { $return .= $separator; }
            $return .= $address_four;
        }
        $address_postcode = $this->_address_postcode;
        if ($address_postcode != '')
        {
            if ($return != '') { $return .= $separator; }
            $return .= $address_postcode;
        }
        
        return $return;
    }

    /**
     * Get the dear field if populated, fallback to the full name if not
     *
     * @access public
     * @return string
     */
    public function dear()
    {
        $dear = $this->_dear;
        return  !empty($dear) ? $dear : $this->post_title;
    }
}

```
