45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Admin tax table add "form".
 | |
|  *
 | |
|  * @since 3.0
 | |
|  *
 | |
|  * @package EDD
 | |
|  * @category Template
 | |
|  * @author Easy Digital Downloads
 | |
|  * @version 1.0.0
 | |
|  */
 | |
| ?>
 | |
| 
 | |
| <tr class="edd-tax-rate-table-add">
 | |
| 
 | |
| 	<th colspan="2">
 | |
| 		<label for="tax_rate_country" class="screen-reader-text"><?php esc_html_e( 'Country', 'easy-digital-downloads' ); ?></label>
 | |
| 		<?php
 | |
| 		echo EDD()->html->country_select( array(
 | |
| 			'id' => 'tax_rate_country',
 | |
| 		) );
 | |
| 		?>
 | |
| 	</th>
 | |
| 
 | |
| 	<th>
 | |
| 		<label for="tax_rate_region" class="screen-reader-text"><?php esc_html_e( 'Region', 'easy-digital-downloads' ); ?></label>
 | |
| 
 | |
| 		<label>
 | |
| 			<input type="checkbox" id="tax_rate_region_global" checked disabled /><?php esc_html_e( 'Apply to whole country', 'easy-digital-downloads' ); ?>
 | |
| 		</label>
 | |
| 
 | |
| 		<div id="tax_rate_region_wrapper"></div>
 | |
| 	</th>
 | |
| 
 | |
| 	<th>
 | |
| 		<label for="tax_rate_amount" class="screen-reader-text"><?php esc_html_e( 'Rate', 'easy-digital-downloads' ); ?></label>
 | |
| 		<input type="number" step="0.0001" min="0.0" max="99" id="tax_rate_amount" />
 | |
| 	</th>
 | |
| 
 | |
| 	<th class="edd-tax-rates-table-actions">
 | |
| 		<button id="tax_rate_submit" class="button button-secondary"><?php esc_html_e( 'Add Rate', 'easy-digital-downloads' ); ?></button>
 | |
| 	</th>
 | |
| 
 | |
| </tr>
 |