コード例 #1
0
    /**
     * Provides the meta box for editinig the venue address.
     *
     * The box provides input fields for the addres and map location of the venue.
     *
     * @param object $post
     */
    public static function btb_venue_address_box($post)
    {
        $venue = btb_get_venue($post->ID);
        wp_localize_script('btb-edit-venue-script', 'BTBooking', array('lat' => $venue->latitude, 'lng' => $venue->longitude, 'queryErrorMsg' => __('When querying the data an error has occurred.', 'bt-booking'), 'nothingFoundMsg' => __('For the specified address no place could be found.', 'bt-booking')));
        wp_enqueue_script('btb-edit-venue-script');
        wp_nonce_field('btb_save_venue_address_box_data', 'btb_venue_address_box_nonce');
        // Creating first row, showing street name and house number
        $row1 = new BTCTableRow();
        $row1->add_content(BTCWPAdminInputText::create('btb_address_street', esc_html__('Street', 'bt-booking'), $venue->street));
        $row1->add_content(BTCWPAdminInputText::create('btb_address_number', esc_html__('Number', 'bt-booking'), $venue->house_number));
        // Creating second row, showing postal code and city
        $row2 = new BTCTableRow();
        $row2->add_content(BTCWPAdminInputText::create('btb_address_zip', esc_html__('Postal code', 'bt-booking'), $venue->postal_code));
        $row2->add_content(BTCWPAdminInputText::create('btb_address_city', esc_html__('City', 'bt-booking'), $venue->city));
        // Creating third row, showing state/region and country
        $row3 = new BTCTableRow();
        $row3->add_content(BTCWPAdminInputText::create('btb_address_region', esc_html__('State/Region', 'bt-booking'), $venue->region));
        $row3->add_content(BTCWPAdminInputSelect::create('btb_address_country', esc_html__('Country', 'bt-booking'), $venue->country, BTBookingCountries::get_countries()));
        // Creating fourth row, showing switch for using map coordinates
        $row4 = new BTCTableRow();
        $row4->add_content(BTCWPAdminInputCheckbox::create('btb_use_coordinates', esc_html__('Use map coordinates', 'bt-booking'), $venue->use_map_coords));
        $row4->add_content(new BTCTableData());
        $saButtonAttrs = array('id' => 'search_address', 'type' => 'button', 'htmlClasses' => 'button button-small');
        if (!$venue->use_map_coords) {
            $saButtonAttrs["style"] = "display:none";
        }
        $row4->add_content(new BTCTableData(new BTCFormButton($saButtonAttrs, esc_html__('Search address', 'bt-booking'))));
        $table = new BTCTable(array('htmlClasses' => 'form-table'), new BTCTableBody(array(), array($row1, $row2, $row3, $row4)));
        $table->render();
        $loc_table = new BTCTable(array('id' => 'locs_table', 'htmlClasses' => 'form-table', 'style' => 'display:none;'));
        $loc_head_row = new BTCTableRow();
        $thstyle = array('padding' => '15px 10px');
        $loc_head_row->add_content(new BTCTableData(esc_html__('Choose', 'bt-booking'), array('style' => $thstyle), true));
        $loc_head_row->add_content(new BTCTableData(esc_html__('Street & No.', 'bt-booking'), array('style' => $thstyle), true));
        $loc_head_row->add_content(new BTCTableData(esc_html__('City', 'bt-booking'), array('style' => $thstyle), true));
        $loc_head_row->add_content(new BTCTableData(esc_html__('ZIP', 'bt-booking'), array('style' => $thstyle), true));
        $loc_head_row->add_content(new BTCTableData(esc_html__('State', 'bt-booking'), array('style' => $thstyle), true));
        $loc_head = new BTCTableHead(array(), $loc_head_row);
        $loc_body = new BTCTableBody(array('id' => 'locs_body'));
        $loc_table->head = $loc_head;
        $loc_table->body = $loc_body;
        $loc_table->render();
        ?>
		<input type="hidden" id="btb_address_lat" name="btb_address_lat" value="<?php 
        echo $venue->latitude;
        ?>
">
		<input type="hidden" id="btb_address_lon" name="btb_address_lon" value="<?php 
        echo $venue->longitude;
        ?>
">

		<div id="mapMessages">
		</div>

		<div id="venueMap" style="height:300px;<?php 
        echo $venue->use_map_coords ? '' : ' display:none';
        ?>
">
		</div>

		<?php 
    }
コード例 #2
0
 /**
  * Provides the meta box showing the customers identity data.
  *
  * @param object $post
  */
 public static function btb_booking_address_box($post)
 {
     $booking = btb_get_booking($post->ID);
     wp_nonce_field('btb_save_booking_address_box_data', 'btb_booking_addres_box_nonce');
     $companyrow = new BTCTableRow();
     $companyrow->add_content(BTCWPAdminInputSelect::create('btb_title', __('Form of address', 'bt-booking'), $booking->title, array('mr' => __('Mr.', 'bt-booking'), 'mrs' => __('Mrs.', 'bt-booking')), true));
     $companyrow->add_content(BTCWPAdminInputText::create('btb_company', __('Company', 'bt-booking'), $booking->company, true));
     $namerow = new BTCTableRow();
     $namerow->add_content(BTCWPAdminInputText::create('btb_first_name', __('First name', 'bt-booking'), $booking->first_name, true));
     $namerow->add_content(BTCWPAdminInputText::create('btb_last_name', __('Last name', 'bt-booking'), $booking->last_name, true));
     $address = get_post_meta($post->ID, 'btb_address');
     $a = $address[0];
     $addressrow = new BTCTableRow();
     $addressrow->add_content(BTCWPAdminInputText::create('btb_address', __('Address', 'bt-booking'), $booking->address, true));
     $addressrow->add_content(BTCWPAdminInputText::create('btb_address2', __('Additional address', 'bt-booking'), $booking->address2, true));
     $cityrow = new BTCTableRow();
     $cityrow->add_content(BTCWPAdminInputText::create('btb_city', __('City', 'bt-booking'), $booking->city, true));
     $cityrow->add_content(BTCWPAdminInputText::create('btb_zip', __('Postal code', 'bt-booking'), $booking->zip, true));
     $countryrow = new BTCTableRow();
     $countryrow->add_content(BTCWPAdminInputSelect::create('btb_country', __('Country', 'bt-booking'), $booking->country, BTBookingCountries::get_countries(), true));
     $emailrow = new BTCTableRow();
     $emailrow->add_content(BTCWPAdminInputText::create('btb_mail', __('E-mail address', 'bt-booking'), $booking->email, true));
     $emailrow->add_content(BTCWPAdminInputText::create('btb_phone', __('Phone number', 'bt-booking'), $booking->phone, true));
     $table = new BTCTable(array('htmlClasses' => 'form-table'), new BTCTableBody(array(), array($companyrow, $namerow, $addressrow, $cityrow, $countryrow, $emailrow)));
     $table->render();
 }