| 1 |
<h3 class="hndle"><?php esc_html_e( 'Privacy', 'weforms' ); ?></h3> |
| 2 |
|
| 3 |
<div class="inside"> |
| 4 |
<table class="form-table"> |
| 5 |
<tr> |
| 6 |
<th><?php esc_html_e( 'Export Payment Data', 'weforms' ); ?></th> |
| 7 |
<td> |
| 8 |
<label> |
| 9 |
<input type="checkbox" v-model="settings.privacy_payment_export"> |
| 10 |
<?php esc_html_e( 'Allow Exporting Payment Data of User.', 'weforms' ); ?> |
| 11 |
</label> |
| 12 |
<p class="help"></p> |
| 13 |
</td> |
| 14 |
</tr> |
| 15 |
<tr> |
| 16 |
<th><?php esc_html_e( 'Erase Payment Data', 'weforms' ); ?></th> |
| 17 |
<td> |
| 18 |
<label> |
| 19 |
<input type="checkbox" v-model="settings.privacy_payment_erase"> |
| 20 |
<?php esc_html_e( 'Allow Erasing Payment Data of User.', 'weforms' ); ?> |
| 21 |
</label> |
| 22 |
<p class="help"></p> |
| 23 |
</td> |
| 24 |
</tr> |
| 25 |
</table> |
| 26 |
</div> |
| 27 |
|
| 28 |
<div class="submit-wrapper"> |
| 29 |
<button v-on:click.prevent="saveSettings($event.target)" class="button button-primary"><?php esc_html_e( 'Save Changes', 'weforms' ); ?></button> |
| 30 |
</div> |
| 31 |
|