add additional days prior installation field to bundle

This commit is contained in:
Bilal Catic
2018-10-30 16:21:24 +01:00
parent 1f03563d2e
commit f8dd5f1d9f
4 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
/**
* Wiaas Package options related to delivery
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<div id="wiaas_package_type_editor" class="options_group show_if_bundle hidden">
<p class="form-field">
<label for="wiaas_additional_days"><?php esc_html_e( 'Number of additional days for the earliest installation date:', 'wiaas' ); ?></label>
<input type="number" id="wiaas_additional_days" name="wiaas_additional_days" min="0" value=<?php echo $additional_days ?> />
</p>
</div>