cf7-conditional-fields
Last commit date
js
6 years ago
Wpcf7cfMailParser.php
6 years ago
admin-style.css
6 years ago
admin-style.css.map
6 years ago
admin-style.scss
6 years ago
admin.php
6 years ago
cf7cf.php
6 years ago
contact-form-7-conditional-fields.php
6 years ago
init.php
6 years ago
readme.txt
6 years ago
style.css
6 years ago
tg_pane_group.php
6 years ago
wpcf7cf-options.php
6 years ago
tg_pane_group.php
36 lines
| 1 | <div class="control-box"> |
| 2 | <fieldset> |
| 3 | <legend><?php echo sprintf( esc_html( $description ) ); ?></legend> |
| 4 | |
| 5 | <table class="form-table"> |
| 6 | <tbody> |
| 7 | |
| 8 | <tr> |
| 9 | <th scope="row"><label for="<?php echo esc_attr( $args['content'] . '-name' ); ?>"><?php echo esc_html( __( 'Name', 'contact-form-7' ) ); ?></label></th> |
| 10 | <td><input type="text" name="name" class="tg-name oneline" id="<?php echo esc_attr( $args['content'] . '-name' ); ?>" /></td> |
| 11 | </tr> |
| 12 | |
| 13 | <tr> |
| 14 | <th scope="row"><label for="clear_on_hide"><?php echo esc_html( __( 'Clear on hide', 'contact-form-7' ) ); ?></label></th> |
| 15 | <td><input type="checkbox" name="clear_on_hide" class="option" id="clear_on_hide" /></td> |
| 16 | </tr> |
| 17 | |
| 18 | <tr> |
| 19 | <th scope="row"><label for="inline"><?php echo esc_html( __( 'Inline', 'contact-form-7' ) ); ?></label></th> |
| 20 | <td><input type="checkbox" name="inline" class="option" id="inline" /></td> |
| 21 | </tr> |
| 22 | |
| 23 | </tbody> |
| 24 | </table> |
| 25 | </fieldset> |
| 26 | </div> |
| 27 | |
| 28 | <div class="insert-box"> |
| 29 | <input type="text" name="<?php echo $type; ?>" class="tag code" readonly="readonly" onfocus="this.select()" /> |
| 30 | |
| 31 | <div class="submitbox"> |
| 32 | <input type="button" class="button button-primary insert-tag" value="<?php echo esc_attr( __( 'Insert Tag', 'contact-form-7' ) ); ?>" /> |
| 33 | </div> |
| 34 | |
| 35 | <br class="clear" /> |
| 36 | </div> |