More yoda conditions
This commit is contained in:
@ -25,7 +25,7 @@
|
||||
|
||||
?>
|
||||
|
||||
<?php if ($field->type === 'date' || $field->date === true) : ?>
|
||||
<?php if ('date' === $field->type || true === $field->date) : ?>
|
||||
|
||||
<?php
|
||||
|
||||
|
@ -25,12 +25,12 @@
|
||||
|
||||
?>
|
||||
|
||||
<?php if ($field->type === 'date' || $field->date === true) : ?>
|
||||
<?php if ('date' === $field->type || true === $field->date) : ?>
|
||||
|
||||
<?php
|
||||
|
||||
if (wu_validate_date($field->value)) {
|
||||
if ($field->display_value == false) {
|
||||
if (false == $field->display_value) {
|
||||
echo __('No date', 'wp-ultimo');
|
||||
} else {
|
||||
$date = $field->value;
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
?>
|
||||
|
||||
<?php if ($field->type === 'model') : ?>
|
||||
<?php if ('model' === $field->type) : ?>
|
||||
|
||||
<div class="wu-flex">
|
||||
|
||||
|
@ -37,7 +37,7 @@
|
||||
|
||||
<div class="wu-toggle">
|
||||
|
||||
<input class="wu-tgl wu-tgl-ios" value="1" <?php checked($field->value == 1); ?> id="wu-tg-<?php echo esc_attr($field->id); ?>" type="checkbox" name="<?php echo esc_attr($field_slug); ?>" <?php echo $field->get_html_attributes(); ?> />
|
||||
<input class="wu-tgl wu-tgl-ios" value="1" <?php checked(1 == $field->value); ?> id="wu-tg-<?php echo esc_attr($field->id); ?>" type="checkbox" name="<?php echo esc_attr($field_slug); ?>" <?php echo $field->get_html_attributes(); ?> />
|
||||
|
||||
<label class="wu-tgl-btn wp-ui-highlight wu-bg-blue-500" for="wu-tg-<?php echo esc_attr($field->id); ?>"></label>
|
||||
|
||||
|
Reference in New Issue
Block a user