__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Fields template for the Entry Print page.
*
* @var object $entry Entry.
* @var array $form_data Form data and settings.
* @var array $fields Fields.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( empty( $fields ) ) {
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo wpforms_render(
'admin/entry-print/no-fields',
[
'entry' => $entry,
'form_data' => $form_data,
],
true
);
return;
}
foreach ( $fields as $field ) {
$is_hidden_by_cl = isset( $field['id'] ) && wpforms_conditional_logic_fields()->field_is_hidden( $form_data, $field['id'] );
if ( $field['type'] === 'repeater' ) {
echo wpforms_render( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
'admin/entry-print/repeater',
[
'entry' => $entry,
'field' => $field,
'form_data' => $form_data,
'is_hidden_by_cl' => $is_hidden_by_cl,
],
true
);
continue;
}
if ( $field['type'] === 'layout' ) {
if ( isset( $field['display'] ) && $field['display'] === 'rows' ) {
echo wpforms_render( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
'admin/entry-print/layout-field-row',
[
'entry' => $entry,
'form_data' => $form_data,
'field' => $field,
'is_hidden_by_cl' => $is_hidden_by_cl,
],
true
);
} else {
echo wpforms_render( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
'admin/entry-print/layout-field-column',
[
'entry' => $entry,
'form_data' => $form_data,
'field' => $field,
'is_hidden_by_cl' => $is_hidden_by_cl,
],
true
);
}
continue;
}
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo wpforms_render(
'admin/entry-print/field',
[
'entry' => $entry,
'form_data' => $form_data,
'field' => $field,
'is_hidden_by_cl' => $is_hidden_by_cl,
],
true
);
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| choice.php | File | 715 B | 0640 |
|
| field.php | File | 1.96 KB | 0640 |
|
| fields.php | File | 1.96 KB | 0640 |
|
| footer.php | File | 330 B | 0640 |
|
| head.php | File | 3.71 KB | 0640 |
|
| image-choice.php | File | 896 B | 0640 |
|
| layout-field-column.php | File | 2.13 KB | 0640 |
|
| layout-field-row.php | File | 2.39 KB | 0640 |
|
| legend-end.php | File | 506 B | 0640 |
|
| legend-start.php | File | 4.34 KB | 0640 |
|
| no-fields.php | File | 335 B | 0640 |
|
| notes.php | File | 1.01 KB | 0640 |
|
| repeater-blocks.php | File | 2.09 KB | 0640 |
|
| repeater-column.php | File | 1.46 KB | 0640 |
|
| repeater-rows.php | File | 1.98 KB | 0640 |
|
| repeater.php | File | 993 B | 0640 |
|
| toggle-option.php | File | 426 B | 0640 |
|