Heray-Was-Here
Server : Apache
System : Linux ip-172-26-6-158 5.10.0-35-cloud-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User : daemon ( 1)
PHP Version : 8.1.10
Disable Function : NONE
Directory :  /bitnami/wordpress/wp-content/plugins/fluentformpro/src/views/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /bitnami/wordpress/wp-content/plugins/fluentformpro/src/views/landing_page_view.php
<?php defined('ABSPATH') or die; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head>
    <?php if($settings['featured_image']): ?>
        <meta property="og:image" content="<?php echo esc_url($settings['featured_image']); ?>">
    <?php endif; ?>
    <?php if($settings['description']): ?>
        <meta property="og:description" content="<?php echo esc_attr(wp_strip_all_tags($settings['description'])); ?>">
    <?php endif; ?>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
    <meta http-equiv="Imagetoolbar" content="No"/>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <?php
        wp_head();
    ?>
    <style type="text/css">
        <?php if($isEmbeded): ?>
        body.ff_landing_page_body {
            font-family: system-ui, -asystem, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
        }
        .ff_landing_wrapper {
            padding: 10px 20px !important;
        }
        .ff_landing_page_body.ff_landing_iframe .ff_landing_wrapper .ff_landing_form {
            max-width: 100%;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        <?php endif; ?>
        <?php if($settings['background_image'] && !$isEmbeded): ?>
        body.ff_landing_page_body {
            background-image: url("<?php echo esc_url($settings['background_image']); ?>") !important;
            background-repeat: no-repeat !important;
            background-size: cover !important;
            background-position: center center !important;
            background-attachment: fixed;
        }
        body.ff_landing_page_body::after {
            background-color: #6f6f6f;
            content: "";
            display: block;
            position: fixed;
            top: 0px;
            left: 0px;
            width: 100%;
            z-index: -1;
            opacity: 0.4;
            bottom: 0;
            right: 0;
        }
        <?php endif; ?>
        body.ff_landing_page_body {
            line-height: 1.65714285714286;
        }
    </style>
    <style id="ff_landing_css" type="text/css">
        body.ff_landing_page_body {
            border-top-color: <?php echo esc_attr($bg_color); ?> !important;
            background-color: <?php echo esc_attr($bg_color); ?>;
        }
    </style>
    <style id="ff_landing_page_settings"></style>
</head>
<body class="ff_landing_page_body ff_landing_page_<?php echo intval($form_id); ?> <?php if($isEmbeded) { echo 'ff_landing_iframe'; } ?>">

<div class="ff_landing_wrapper ff_landing_design_<?php echo esc_attr($settings['design_style']); ?> ff_landing_layout_<?php echo esc_attr($settings['layout']); ?>">
    <div class="ff_landing_form_wrapper <?php echo isset($front_end_entry)?'front_end_entry_view':''; ?>">
        <?php if(isset($settings['form_shadow']) && is_array($settings['form_shadow'])):
            // check have shadow or not if have make shadow
            $shadow = array_map(function ($s) {
                return $s['position'] . ' ' .
                    $s['horizontal'] . "px " .
                    $s['vertical'] . 'px ' .
                    $s['blur'] . "px " .
                    $s['spread'] . 'px ' .
                    $s['color'];
            }, $settings['form_shadow']);
            $shadow = join(',' , $shadow);
        ?>
        <div class="ff_landing_form" style="box-shadow: <?php echo esc_attr($shadow) ?>;">
        <?php endif;?>
            <?php if($has_header): ?>
                <div class="ff_landing_header">
                    <?php if($settings['logo']):?>
                        <div class="ff_landing-custom-logo">
                            <img src="<?php echo esc_url($settings['logo']); ?>" alt="Form Logo">
                        </div>
                    <?php endif; ?>
                    <?php if($settings['title']): ?>
                        <h1><?php echo esc_html($settings['title']); ?></h1>
                    <?php endif; ?>
                    <?php if($settings['description']): ?>
                        <div class="ff_landing_desc">
                            <?php echo wp_kses_post($settings['description']); ?>
                        </div>
                    <?php endif; ?>
                </div>
            <?php endif; ?>
            <?php
                $landing_content = fluentform_sanitize_html($landing_content);
            ?>
            <div class="ff_landing_body">
                <?php echo do_shortcode($landing_content); ?>
            </div>
        </div>
    </div>
    <?php if($settings['layout'] != 'default'):
        $brightness = isset($settings['brightness']) ? intval($settings['brightness']) : 0;
        $brightnessCss = '';

        if ($brightness > 0) {
            $brightnessCss .= 'contrast(' . ((100 - $brightness) / 100) . ') ';
        }
        $brightnessCss .= ' brightness(' . (1 + $brightness / 100) . ')';

        $layout = isset($settings['layout']) ? $settings['layout'] : 'default';
    ?>
    <div class="ff_landing_media_holder">
        <div style=" filter: <?php echo esc_attr($brightnessCss) ?>;" class="fcc_block_media_attachment fc_i_layout_<?php echo esc_attr($layout) ?>" >
        <?php
        if(!empty($settings['media'])):
            if ($settings['layout'] == 'media_right_full' || $settings['layout'] == 'media_left_full') {
                $imagePositionCSS = $settings['media_x_position'] .'% '. $settings['media_y_position'] . '%';
            }else{
                $imagePositionCSS = '';
            }
        ?>

        <div class="fc_image_holder">
                <img style=" object-position: <?php echo esc_attr($imagePositionCSS); ?> "
                     alt="<?php echo esc_attr($settings['alt_text']); ?>"
                     src="<?php echo esc_url($settings['media']); ?>"
                />
            </div>
        </div>
        <?php endif;?>
    </div>
    <?php endif;?>


</div>
<?php
wp_footer();
?>
</body>
</html>

Hry