XylotrechusZ
XylotrechusZ Shell
: /home/mjbynoyq/dubailivejob.site/wp-content/plugins/formidable/classes/views/styles/ [ drwxr-xr-x ]
<?php
if ( ! defined( 'ABSPATH' ) ) {
die( 'You are not allowed to call this page directly.' );
}
?>
<div>
<p class="frm_grid_container">
<label class="frm4 frm_form_field" for="frm_load_style">
<?php esc_html_e( 'Load form styling', 'formidable' ); ?>
</label>
<select id="frm_load_style" name="frm_load_style" class="frm8 frm_form_field">
<option value="all" <?php selected( $frm_settings->load_style, 'all' ); ?>>
<?php esc_html_e( 'on every page of my site', 'formidable' ); ?>
</option>
<option value="dynamic" <?php selected( $frm_settings->load_style, 'dynamic' ); ?>>
<?php esc_html_e( 'only on applicable pages', 'formidable' ); ?>
</option>
<option value="none" <?php selected( $frm_settings->load_style, 'none' ); ?>>
<?php esc_html_e( 'Don\'t use form styling on any page', 'formidable' ); ?>
</option>
</select>
</p>
<?php do_action( 'frm_style_general_settings', $frm_settings ); ?>
<p class="howto">
<?php esc_html_e( 'Easily change which style your forms are using by making changes below.', 'formidable' ); ?>
</p>
<?php require FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php'; ?>
<table class="widefat fixed striped">
<thead>
<tr>
<th scope="col" class="column-locations">
<?php esc_html_e( 'Form Title', 'formidable' ); ?>
</th>
<th scope="col">
<?php esc_html_e( 'Assigned Style Templates', 'formidable' ); ?>
</th>
</tr>
</thead>
<tbody>
<?php
if ( $forms ) {
$row_view_file_path = FrmAppHelper::plugin_path() . '/classes/views/styles/_manage-styles-row.php';
array_walk(
$forms,
/**
* @param stdClass $form
* @param array<WP_Post> $styles
* @param WP_Post $default_style
* @param string $row_view_file_path
* @return void
*/
function ( $form ) use ( $styles, $default_style, $row_view_file_path ) {
$active_style_id = isset( $form->options['custom_style'] ) ? (int) $form->options['custom_style'] : 1;
if ( 1 === $active_style_id ) {
// use the default style
$active_style_id = $default_style->ID;
}
include $row_view_file_path;
}
);
} else {
?>
<tr>
<td><?php esc_html_e( 'No Forms Found', 'formidable' ); ?></td>
</tr>
<?php
}//end if
?>
</tbody>
</table>
</div>