haxorqt
Home
Console
Upload
information
Create File
Create Folder
About
:
/
home
/
sc1jaqa5103
/
prod.puv-editions.fr
/
wp-content
/
updraft
/
plugins-old
/
pods
/
ui
/
front
/
Filename :
view.php
back
Copy
<?php // Don't load directly. if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } pods_form_enqueue_style( 'pods-form' ); /** * @var array $fields * @var Pods $pod */ ?> <div class="pods-submittable-fields"> <ul class="pods-form-fields"> <?php foreach ( $fields as $field ) { if ( isset( $field['custom_display'] ) && is_callable( $field['custom_display'] ) ) { $value = call_user_func_array( $field['custom_display'], array( $pod->row(), $pod, $pod->field( $field['name'] ), $field['name'], $field, ) ); } else { $value = $pod->display( $field['name'] ); } $default_class = ' pods-form-ui-row-type-' . $field['type'] . ' pods-form-ui-row-name-' . PodsForm::clean( $field[ 'name' ] ); $html_class = apply_filters( 'pods-field-html-class', $field ) . $default_class; ?> <li class="pods-field__container pods-field <?php echo esc_attr( $html_class, true ); ?>"> <div class="pods-field-label"> <strong><?php echo $field['label']; ?></strong> </div> <div class="pods-field-input"> <?php echo $value; ?> </div> </li> <?php }//end foreach ?> </ul> </div>