setting-label.php
749 Bytes
<table class="ac-column-setting<?php echo $this->name ? esc_attr( ' ac-column-setting--' . $this->name ) : ''; ?>" data-setting="<?php echo esc_attr( $this->name ); ?>">
<tr>
<td class="col-label">
<label for="<?php echo esc_attr( $this->for ); ?>">
<span class="label<?php echo esc_attr( $this->tooltip ? ' tooltip' : '' ); ?>">
<?php echo $this->label; ?>
</span>
<?php if ( $this->tooltip ) : ?>
<div class="tooltip">
<?php echo $this->tooltip; ?>
</div>
<?php endif; ?>
</label>
</td>
<td class="col-input">
<div class="ac-setting-input ac-setting-input-label">
<div class="ac-setting-input__container">
<?php echo $this->setting; ?>
</div>
</div>
</td>
</tr>
</table>