File: /home/dh_hwg2wc/fnaluxury.com/wp-content/themes/houzez/framework/metaboxes/state-meta.php
<?php
/**
* Created by PhpStorm.
* User: waqasriaz
* Date: 08/10/16
* Time: 9:00 PM
*/
if ( !function_exists( 'houzez_property_state_add_meta_fields' ) ) :
function houzez_property_state_add_meta_fields() {
$houzez_meta = houzez_get_property_state_meta();
if(taxonomy_exists('property_country')) {
?>
<div class="form-field">
<label><?php _e( 'Which country has this state?', 'houzez' ); ?></label>
<select name="fave[parent_country]" class="widefat">
<option value=""><?php esc_html_e('Select Country', 'houzez'); ?></option>
<?php echo houzez_get_all_countries(); ?>
</select>
<p class="description"><?php _e( 'Select country which has this state.', 'houzez' ); ?></p>
</div>
<?php
}
}
endif;
add_action( 'property_state_add_form_fields', 'houzez_property_state_add_meta_fields', 10, 2 );
/**
* ----------------------------------------------------------------------------------------------------------------------------------------------------
* 2.0 - Edit meta field
* ----------------------------------------------------------------------------------------------------------------------------------------------------
*/
if ( !function_exists( 'houzez_property_state_edit_meta_fields' ) ) :
function houzez_property_state_edit_meta_fields( $term ) {
$houzez_meta = houzez_get_property_state_meta();
$parent_country = '';
if(is_object ($term)) {
$term_id = $term->term_id;
$term_meta = get_option( "_houzez_property_state_$term_id" );
$parent_country = isset($term_meta['parent_country']) ? $term_meta['parent_country'] : '';
}
?>
<tr class="form-field">
<th scope="row" valign="top"><label><?php _e( 'Which country has this state?', 'houzez' ); ?></label></th>
<td>
<select name="fave[parent_country]" class="widefat">
<option value=""><?php esc_html_e('Select Country', 'houzez'); ?></option>
<?php echo houzez_get_all_countries($parent_country); ?>
</select>
<p class="description"><?php _e( 'Select country which has this state.', 'houzez' ); ?></p>
</td>
</tr>
<?php
}
endif;
add_action( 'property_state_edit_form_fields', 'houzez_property_state_edit_meta_fields', 10, 2 );