Use new code style

This commit is contained in:
David Stone
2025-02-07 19:02:33 -07:00
parent 0181024ae1
commit 8433379d90
672 changed files with 37107 additions and 45249 deletions

View File

@ -7,35 +7,35 @@
?>
<div class="wu-styling">
<?php echo $form->before; ?>
<?php echo $form->before; ?>
<div class="wu-flex wu-flex-wrap">
<div class="wu-flex wu-flex-wrap">
<?php if ($form->wrap_in_form_tag) : ?>
<?php if ($form->wrap_in_form_tag) : ?>
<form
id="<?php echo esc_attr($form_slug); ?>"
action="<?php echo esc_attr($form->action); ?>"
method="<?php echo esc_attr($form->method); ?>"
<?php echo $form->get_html_attributes(); ?>
>
<form
id="<?php echo esc_attr($form_slug); ?>"
action="<?php echo esc_attr($form->action); ?>"
method="<?php echo esc_attr($form->method); ?>"
<?php echo $form->get_html_attributes(); ?>
>
<?php endif; ?>
<?php endif; ?>
<ul id="wp-ultimo-form-<?php echo esc_attr($form->id); ?>" class="wu-flex-grow <?php echo esc_attr(trim($form->classes)); ?>" <?php echo $form->get_html_attributes(); ?>>
<ul id="wp-ultimo-form-<?php echo esc_attr($form->id); ?>" class="wu-flex-grow <?php echo esc_attr(trim($form->classes)); ?>" <?php echo $form->get_html_attributes(); ?>>
<?php echo $rendered_fields; ?>
<?php echo $rendered_fields; ?>
</ul>
</ul>
<?php if ($form->wrap_in_form_tag) : ?>
<?php if ($form->wrap_in_form_tag) : ?>
</form>
</form>
<?php endif; ?>
<?php endif; ?>
<?php echo $form->after; ?>
<?php echo $form->after; ?>
</div>
</div>
</div>