header-icon.php
5 years ago
header.php
5 years ago
section.php
5 years ago
setting-date.php
5 years ago
setting-label-icons.php
5 years ago
setting-label.php
5 years ago
setting-message.php
5 years ago
setting-pro.php
5 years ago
setting-width.php
5 years ago
setting-label.php
28 lines
| 1 | <table class="ac-column-setting<?php echo $this->name ? esc_attr( ' ac-column-setting--' . $this->name ) : ''; ?>" data-setting="<?php echo esc_attr( $this->name ); ?>"> |
| 2 | <tr> |
| 3 | <td class="col-label"> |
| 4 | <label for="<?php echo esc_attr( $this->for ); ?>"> |
| 5 | |
| 6 | <span class="label<?php echo esc_attr( $this->tooltip ? ' tooltip' : '' ); ?>"> |
| 7 | <?php echo $this->label; ?> |
| 8 | </span> |
| 9 | |
| 10 | <?php if ( $this->tooltip ) : ?> |
| 11 | <div class="tooltip"> |
| 12 | <?php echo $this->tooltip; ?> |
| 13 | </div> |
| 14 | <?php endif; ?> |
| 15 | |
| 16 | </label> |
| 17 | </td> |
| 18 | <td class="col-input"> |
| 19 | <div class="ac-setting-input ac-setting-input-label"> |
| 20 | |
| 21 | <div class="ac-setting-input__container"> |
| 22 | <?php echo $this->setting; ?> |
| 23 | </div> |
| 24 | |
| 25 | </div> |
| 26 | </td> |
| 27 | </tr> |
| 28 | </table> |