0 ) { $this->get_tenancy( $id ); } } /** * Gets a tenancy from the database. * * @access public * @param int $id (default: 0) * @return bool */ public function get_tenancy( $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 tenancy 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 formatted tenancy rent * * @access public * @return string */ public function get_formatted_rent( ) { $ph_countries = new PH_Countries(); if ($this->_currency != '') { $currency = $ph_countries->get_currency( $this->_currency ); } else { $currency = $ph_countries->get_currency( 'GBP' ); } $prefix = ( ($currency['currency_prefix']) ? $currency['currency_symbol'] : '' ); $suffix = ( (!$currency['currency_prefix']) ? $currency['currency_symbol'] : '' ); $amount = $this->_rent; return ( ( $amount != '' ) ? $prefix . ph_display_price_field($amount) : '-' ) . $suffix . ' ' . __( $this->_rent_frequency, 'propertyhive' ); } /** * Get the tenancy status * * @access public * @return string */ public function get_status() { if ( $this->_start_date && strtotime( $this->_start_date ) > time() ) { return __( 'Pending', 'propertyhive' ); } elseif ( $this->_start_date && strtotime( $this->_start_date ) <= time() && ( time() <= strtotime( $this->_end_date ) || $this->_end_date == '' ) ) { return __( 'Current', 'propertyhive' ); } elseif ( $this->_end_date && strtotime( $this->_end_date ) < time() ) { return __( 'Finished', 'propertyhive' ); } } /** * Get a list of tenants on the property * * @access public * @param bool $add hyperlinks * @return string */ public function get_tenants( $add_hyperlinks = false, $additional_contact_details = false ) { $applicant_contact_ids = get_post_meta( $this->id, '_applicant_contact_id' ); if ( is_array($applicant_contact_ids) && !empty($applicant_contact_ids) ) { $applicants = array(); foreach ( $applicant_contact_ids as $applicant_contact_id ) { $applicant_name = get_the_title($applicant_contact_id); if ( $add_hyperlinks ) { $edit_link = get_edit_post_link( $applicant_contact_id ); $applicant_name = '' . $applicant_name . ''; } if ( $additional_contact_details ) { $contact_details = array(); $telephone_number = get_post_meta( $applicant_contact_id, '_telephone_number', true ); if( !empty($telephone_number) ) { $contact_details[] = 'T: ' . $telephone_number; } $email_address = get_post_meta( $applicant_contact_id, '_email_address', true ); if( !empty($email_address) ) { $contact_details[] = 'E: ' . $email_address; } if ( !empty($contact_details) ) { $applicant_name .= '
' . implode( "
", $contact_details ) . '
'; } } $applicants[] = $applicant_name; } return implode("
", $applicants); } else { return '-'; } } }