| Server IP : 69.39.225.240 / Your IP : 216.73.216.138 Web Server : Apache System : Linux bronze7.serverhost.net 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : reademotions ( 1074) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/reademotions/www/wp-content/plugins/pods/ui/forms/ |
Upload File : |
<?php /** * @var Pods $pod * @var mixed $id * @var string $field_prefix * @var \Pods\Whatsit\Field $field * @var string $row_classes * @var mixed $value * @var string|null $heading_tag */ ?> <div class="pods-field__container pods-field-option" style="<?php echo esc_attr( 'hidden' == $field['type'] ? 'display:none;' : '' ); ?>"> <?php if ( 'heading' === $field['type'] ) : ?> <?php $heading_tag = pods_v( $field['type'] . '_tag', $field, isset( $heading_tag ) ? $heading_tag : 'h2', true ); ?> <<?php echo esc_html( sanitize_key( $heading_tag ) ); ?> class="pods-form-ui-heading pods-form-ui-heading-<?php echo esc_attr( $field['name'] ); ?>"> <?php echo esc_html( $field['label'] ); ?> </<?php echo esc_html( sanitize_key( $heading_tag ) ); ?>> <?php echo PodsForm::comment( $field_prefix . $field['name'], pods_v( 'description', $field ), $field ); ?> <?php elseif ( 'html' === $field['type'] && 1 === (int) $field['html_no_label'] ) : ?> <?php echo PodsForm::field( $field_prefix . $field['name'], $value, $field['type'], $field, $pod, $id ); ?> <?php else : ?> <p<?php if ( ! empty( $row_classes ) ) : ?> class="<?php echo esc_attr( $row_classes ); ?> <?php endif; ?>> <?php echo PodsForm::label( $field_prefix . $field['name'], $field['label'], pods_v( 'help', $field ), $field ); echo PodsForm::field( $field_prefix . $field['name'], $value, $field['type'], $field, $pod, $id ); echo PodsForm::comment( $field_prefix . $field['name'], pods_v( 'description', $field ), $field ); ?> </p> <?php endif; ?> </div>