Created
March 24, 2025 11:15
-
-
Save propertyhive/b9fcdec30d55c24822a384c7093d99ef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( "propertyhive_wpresidence_property_synced", 'sync_material_info_stuff_to_wpr', 10, 3 ); | |
function sync_material_info_stuff_to_wpr( $ph_post_id, $wpr_post_id, $synced ) | |
{ | |
if ( $synced === true ) | |
{ | |
$property = new PH_Property($ph_post_id); | |
// Utilities and Accessibility | |
$utility_types = array( | |
'electricity', | |
'water', | |
'heating', | |
'broadband', | |
'sewerage', | |
'accessibility', | |
); | |
foreach ( $utility_types as $utility ) | |
{ | |
$property_utility_types = $property->{'_' . $utility . '_type'}; | |
if ( is_array($property_utility_types) && !empty($property_utility_types) ) | |
{ | |
$types = array(); | |
foreach ( $property_utility_types as $type ) | |
{ | |
if ( $type == 'other' ) | |
{ | |
if ( $utility == 'accessibility' ) | |
{ | |
$types[] = $property->{'_' . $utility . '_other'}; | |
} | |
else | |
{ | |
$types[] = $property->{'_' . $utility . '_type_other'}; | |
} | |
} | |
else | |
{ | |
$function_name = "get_{$utility}_type"; | |
if ( function_exists($function_name) ) | |
{ | |
$types[] = $function_name($type); | |
} | |
else | |
{ | |
$types[] = $type; | |
} | |
} | |
} | |
$types = implode(", ", $types); | |
update_post_meta( $wpr_post_id, $utility . '-type', $types ); | |
} | |
} | |
// Rights, Restrictions and Easements | |
$rights = array(); | |
$property_restriction = $property->_restriction; | |
if ( is_array($property_restriction) && !empty($property_restriction) ) | |
{ | |
foreach ( $property_restriction as $type ) | |
{ | |
if ( $type == 'other' ) | |
{ | |
$rights[] = $property->_restriction_other; | |
} | |
else | |
{ | |
$function_name = "get_restriction"; | |
if ( function_exists($function_name) ) | |
{ | |
$rights[] = $function_name($type); | |
} | |
else | |
{ | |
$rights[] = $type; | |
} | |
} | |
} | |
} | |
$property_right = $property->_right; | |
if ( is_array($property_right) && !empty($property_right) ) | |
{ | |
foreach ( $property_right as $type ) | |
{ | |
if ( $type == 'other' ) | |
{ | |
$rights[] = $property->_right_other; | |
} | |
else | |
{ | |
$function_name = "get_right"; | |
if ( function_exists($function_name) ) | |
{ | |
$rights[] = $function_name($type); | |
} | |
else | |
{ | |
$rights[] = $type; | |
} | |
} | |
} | |
} | |
update_post_meta( $wpr_post_id, 'rights-and-easements', implode(", ", $rights) ); | |
$property_flood_data = $property->_flooded_in_last_five_years; | |
if ( !empty($property_flood_data) ) | |
{ | |
update_post_meta( $wpr_post_id, 'flooded-in-last-5-years', ucfirst($property_flood_data) ); | |
} | |
$flood_sources = array(); | |
$property_flood_source_type = $property->_flood_source_type; | |
if ( is_array($property_flood_source_type) && !empty($property_flood_source_type) ) | |
{ | |
foreach ( $property_flood_source_type as $type ) | |
{ | |
if ( $type == 'other' ) | |
{ | |
$flood_sources[] = $property->_flood_source_type_other; | |
} | |
else | |
{ | |
$function_name = "get_flooding_source_type"; | |
if ( function_exists($function_name) ) | |
{ | |
$flood_sources[] = $function_name($type); | |
} | |
else | |
{ | |
$flood_sources[] = $type; | |
} | |
} | |
} | |
} | |
update_post_meta( $wpr_post_id, 'flooding-source', implode(", ", $flood_sources) ); | |
$property_flood_data = $property->_flood_defences; | |
if ( !empty($property_flood_data) ) | |
{ | |
update_post_meta( $wpr_post_id, 'are-there-flood-defences', ucfirst($property_flood_data) ); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment