-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetting-date.php
45 lines (40 loc) · 1.38 KB
/
setting-date.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<table class="ac-column-setting<?= $this->name ? esc_attr( ' ac-column-setting--' . $this->name ) : ''; ?>" data-setting="<?= esc_attr( $this->name ); ?>">
<tr>
<td class="col-label">
<label for="<?= esc_attr( $this->for ); ?>">
<span class="label<?= esc_attr( $this->tooltip ? ' tooltip' : '' ); ?>">
<?= $this->label; ?>
</span>
<?php if ( $this->tooltip ) : ?>
<div class="tooltip">
<?= $this->tooltip; ?>
</div>
<?php endif; ?>
</label>
</td>
<td class="col-input">
<div class="ac-setting-input ac-setting-input-date" data-custom-formats="<?= esc_attr( json_encode( $this->custom_date_formats ) ); ?>">
<div class="radio-labels vertical">
<?php foreach ( $this->date_options as $key => $label ) : ?>
<?php
$value = $key === 'custom'
? $this->date_format
: $key;
?>
<label>
<input class="<?= esc_attr( $value ); ?>" type="radio" <?= $key === 'custom' ? 'data-custom' : '' ?> name="<?= $this->setting->get_name(); ?>" value="<?= esc_attr( $value ); ?>">
<?= $label; ?>
</label>
<?php endforeach; ?>
</div>
<p class="help-msg"></p>
<input type="hidden" class="ac-setting-input-date__value" data-value-input name="<?= $this->setting->get_name(); ?>" value="<?= $this->date_format; ?>">
</div>
</td>
</tr>
</table>