- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
125 lines
4.8 KiB
PHTML
Executable File
125 lines
4.8 KiB
PHTML
Executable File
<?php
|
|
$tzstring = get_option( TVE_Ult_Const::SETTINGS_TIME_ZONE );
|
|
?>
|
|
<div class="tvd-modal-content">
|
|
<h3 class="tvd-modal-title"><?php echo __( 'Set General Date & Time', 'thrive-ult' ) ?></h3>
|
|
<div class="tvd-v-spacer"></div>
|
|
<div class="tvd-row tvd-collapse">
|
|
<div class="tvd-col tvd-m6 tvd-s12">
|
|
<h4><?php echo __( 'Date Format', 'thrive-ult' ) ?></h4>
|
|
<p><?php echo __( 'Current date format:', 'thrive-ult' ) ?>
|
|
<span class="tvu-gray-text">
|
|
<#= ThriveUlt.globals.date_formats.get(model.get('date_format')).date #><span>(<#= ThriveUlt.globals.date_formats.get(model.get('date_format')).description #>
|
|
)</span>
|
|
</span>
|
|
</p>
|
|
<div class="tvu-gray-box">
|
|
<div class="tvd-row tvd-collapse tvd-no-mb">
|
|
<div class="tvd-col tvd-l6 tvd-m7 tvd-s12">
|
|
<p class="tvd-no-margin tvd-vertical-align">
|
|
<?php echo __( 'Change default date format:', 'thrive-ult' ) ?>
|
|
</p>
|
|
</div>
|
|
<div class="tvd-col tvd-l6 tvd-m5 tvd-s12">
|
|
<div class="tvd-input-field tvd-no-margin">
|
|
<select id="tvu-date-format-setting">
|
|
<option disabled selected value="0"><?php echo __( 'Select Date Format', 'thrive-ult' ) ?></option>
|
|
<?php foreach ( TVE_Ult_Const::date_format_details( 'all' ) as $k => $v ) : ?>
|
|
<option
|
|
<#= model.get('date_format') == '<?php echo $k ?>' ? 'selected' : '' #> value="<?php echo $k; ?>"><?php echo $v['description']; ?></option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
<label for="tvu-date-format-setting">
|
|
<?php echo __( 'Set default format date', 'thrive-ult' ) ?>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="tvd-col tvd-m6 tvd-s12">
|
|
<h4><?php echo __( 'Time Format', 'thrive-ult' ) ?></h4>
|
|
<?php
|
|
$timezone = TVE_Ult_Const::get_timezone( $tzstring );
|
|
$full_time = gmdate( 'H:i', time() + 3600 * ( $timezone + date( "I" ) ) );
|
|
$part_time = gmdate( 'h:i A', time() + 3600 * ( $timezone + date( "I" ) ) );
|
|
?>
|
|
<p><?php echo __( 'Current time format:', 'thrive-ult' ) ?>
|
|
<span class="tvu-gray-text">
|
|
<#= model.get('time_format') == 12 ? '<?php echo $part_time ?>' : '<?php echo $full_time ?>'#>
|
|
<span>(<#= model.get('time_format') #> <?php echo __( 'hours', 'thrive-ult' ) ?>)</span>
|
|
</span>
|
|
</p>
|
|
<div class="tvu-gray-box">
|
|
<div class="tvd-row tvd-collapse tvd-no-mb">
|
|
<div class="tvd-col tvd-l6 tvd-m7 tvd-s12">
|
|
<p class="tvd-no-margin tvd-vertical-align">
|
|
<?php echo __( 'Change default time format:', 'thrive-ult' ) ?>
|
|
</p>
|
|
</div>
|
|
<div class="tvd-col tvd-l6 tvd-m5 tvd-s12">
|
|
<div class="tvd-input-field tvd-no-margin">
|
|
<select id="tvu-time-format-setting">
|
|
<option disabled selected value="0"><?php echo __( 'Select Time Format', 'thrive-ult' ) ?></option>
|
|
<option
|
|
<#= model.get('time_format') == 24 ? 'selected' : '' #>
|
|
value="24"><?php echo __( '24 hours', 'thrive-ult' ) ?> (<?php echo $full_time; ?>)</option>
|
|
<option
|
|
<#= model.get('time_format') == 12 ? 'selected' : '' #>
|
|
value="12"><?php echo __( '12 hours', 'thrive-ult' ) ?> (<?php echo $part_time; ?>)</option>
|
|
</select>
|
|
<label for="tvu-time-format-setting">
|
|
<?php echo __( 'Set default time format', 'thrive-ult' ) ?>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="tvd-v-spacer vs-2"></div>
|
|
<div class="tvd-row tvd-collapse">
|
|
<div class="tvd-col tvd-m6 tvd-s12">
|
|
<h4><?php echo __( 'Time Zone Format', 'thrive-ult' ) ?></h4>
|
|
<p>
|
|
<?php echo __( 'Current time zone:', 'thrive-ult' ) ?>
|
|
<span class="tvu-gray-text">
|
|
<#= model.get('timezone') ? model.get('timezone') : '<?php __( 'Not Set', 'thrive-ult' ) ?>' #>
|
|
</span>
|
|
</p>
|
|
<div class="tvu-gray-box">
|
|
<div class="tvd-row tvd-collapse tvd-no-mb">
|
|
<div class="tvd-col tvd-l6 tvd-m7 tvd-s12">
|
|
<p class="tvd-no-margin tvd-vertical-align">
|
|
<?php echo __( 'Change default timezone:', 'thrive-ult' ) ?>
|
|
</p>
|
|
</div>
|
|
<div class="tvd-col tvd-l6 tvd-m5 tvd-s12">
|
|
<div class="tvd-input-field tvd-no-margin">
|
|
<select id="tvu-timezone-setting">
|
|
<?php echo wp_timezone_choice( $tzstring ); ?>
|
|
</select>
|
|
<label
|
|
for="tvu-timezone-setting"><?php echo __( 'Set default time zone', 'thrive-ult' ) ?></label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="tvd-modal-footer control-grid">
|
|
<div>
|
|
<a href="javascript:void(0)"
|
|
class="tvd-btn-flat tvd-btn-flat-secondary tvd-btn-flat-dark tvd-waves-effect tvd-modal-close">
|
|
<?php echo __( "Cancel", 'thrive-ult' ) ?>
|
|
</a>
|
|
</div>
|
|
<div>
|
|
<a href="javascript:void(0)"
|
|
class="tvd-btn tvd-btn-green tvd-waves-light tvd-right tvu-save-date-settings tvd-modal-submit">
|
|
<?php echo __( "Save Changes", 'thrive-ult' ) ?>
|
|
</a>
|
|
</div>
|
|
</div>
|