Файловый менеджер - Редактировать - /var/www/jonas-eriksen.dk/blog/wp-content/plugins/wp-maintenance-mode/views/maintenance.php
Назад
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title><?php echo stripslashes($title); ?></title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <meta name="author" content="<?php echo esc_attr($author); ?>" /> <meta name="description" content="<?php echo esc_attr($description); ?>" /> <meta name="keywords" content="<?php echo esc_attr($keywords); ?>" /> <meta name="robots" content="<?php echo esc_attr($robots); ?>" /> <?php if (!empty($styles) && is_array($styles)) { foreach ($styles as $src) { ?> <link rel="stylesheet" href="<?php echo $src; ?>"> <?php } } if (!empty($custom_css) && is_array($custom_css)) { echo '<style>' . implode(array_map('stripslashes', $custom_css)) . '</style>'; } // do some actions do_action('wm_head'); // this hook will be removed in the next versions do_action('wpmm_head'); ?> </head> <body class="<?php echo $body_classes ? $body_classes : ''; ?>"> <?php do_action('wpmm_after_body'); ?> <div class="wrap"> <?php if (!empty($heading)) { ?><h1><?php echo stripslashes($heading); ?></h1><?php } ?> <?php // If bot is enabled no text will be shown if ( !empty($text) && $this->plugin_settings['bot']['status'] === 0) { echo "<h2>" . stripslashes($text) . "</h2>"; } ?> <?php if (!empty($this->plugin_settings['bot']['status']) && $this->plugin_settings['bot']['status'] === 1) { ?> </div><!-- .wrap --> <div class="bot-container"> <!-- WP Bot --> <div class="bot-chat-wrapper"> <!-- Chats --> <div class="chat-container cf"></div> <!-- User input --> <div class="input"></div> <!-- User choices --> <div class="choices cf"></div> </div> <!-- /WP Bot --> </div> <div class="bot-error"><p></p></div> <div class="wrap under-bot"> <?php } ?> <?php if (!empty($this->plugin_settings['modules']['countdown_status']) && $this->plugin_settings['modules']['countdown_status'] == 1) { ?> <div class="countdown" data-start="<?php echo date('F d, Y H:i:s', strtotime($countdown_start)); ?>" data-end="<?php echo date('F d, Y H:i:s', $countdown_end); ?>"></div> <?php } ?> <?php if (!empty($this->plugin_settings['modules']['subscribe_status']) && $this->plugin_settings['modules']['subscribe_status'] == 1 // If the bot is active, legacy subscribe form will be hidden // !empty($this->plugin_settings['bot']['status']) && && $this->plugin_settings['bot']['status'] === 0 ) { ?> <?php if (!empty($this->plugin_settings['modules']['subscribe_text'])) { ?><h3><?php echo stripslashes($this->plugin_settings['modules']['subscribe_text']); ?></h3><?php } ?> <div class="subscribe_wrapper" style="min-height: 100px;"> <form class="subscribe_form"> <div class="subscribe_border"> <input type="text" placeholder="<?php _e('your e-mail...', $this->plugin_slug); ?>" name="email" class="email_input" data-rule-required="true" data-rule-email="true" data-rule-required="true" data-rule-email="true" /> <input type="submit" value="<?php _e('Subscribe', $this->plugin_slug); ?>" /> </div> <?php if (!empty($this->plugin_settings['gdpr']['status']) && $this->plugin_settings['gdpr']['status'] == 1) { ?> <div class="privacy_checkbox"> <label> <input type="checkbox" name="acceptance" value="YES" data-rule-required="true" data-msg-required="<?php esc_attr_e('This field is required.', $this->plugin_slug); ?>"> <?php _e("I've read and agree with the site's privacy policy", $this->plugin_slug); ?> </label> </div> <?php if(!empty($this->plugin_settings['gdpr']['subscribe_form_tail'])) { ?> <p class="privacy_tail"><?php echo wp_kses($this->plugin_settings['gdpr']['subscribe_form_tail'], wpmm_gdpr_textarea_allowed_html()); ?></p> <?php }} ?> </form> </div> <?php } ?> <?php if (!empty($this->plugin_settings['modules']['social_status']) && $this->plugin_settings['modules']['social_status'] == 1) { ?> <div class="social" data-target="<?php echo !empty($this->plugin_settings['modules']['social_target']) ? 1 : 0; ?>"> <?php if (!empty($this->plugin_settings['modules']['social_twitter'])) { ?> <a class="tw" href="<?php echo stripslashes($this->plugin_settings['modules']['social_twitter']); ?>">twitter</a> <?php } ?> <?php if (!empty($this->plugin_settings['modules']['social_facebook'])) { ?> <a class="fb" href="<?php echo stripslashes($this->plugin_settings['modules']['social_facebook']); ?>">facebook</a> <?php } ?> <?php if (!empty($this->plugin_settings['modules']['social_instagram'])) { ?> <a class="instagram" href="<?php echo stripslashes($this->plugin_settings['modules']['social_instagram']); ?>">instagram</a> <?php } ?> <?php if (!empty($this->plugin_settings['modules']['social_pinterest'])) { ?> <a class="pin" href="<?php echo stripslashes($this->plugin_settings['modules']['social_pinterest']); ?>">pinterest</a> <?php } ?> <?php if (!empty($this->plugin_settings['modules']['social_github'])) { ?> <a class="git" href="<?php echo stripslashes($this->plugin_settings['modules']['social_github']); ?>">github</a> <?php } ?> <?php if (!empty($this->plugin_settings['modules']['social_dribbble'])) { ?> <a class="dribbble" href="<?php echo stripslashes($this->plugin_settings['modules']['social_dribbble']); ?>">dribbble</a> <?php } ?> <?php if (!empty($this->plugin_settings['modules']['social_google+'])) { ?> <a class="gplus" href="<?php echo stripslashes($this->plugin_settings['modules']['social_google+']); ?>">google plus</a> <?php } ?> <?php if (!empty($this->plugin_settings['modules']['social_linkedin'])) { ?> <a class="linkedin" href="<?php echo stripslashes($this->plugin_settings['modules']['social_linkedin']); ?>">linkedin</a> <?php } ?> </div> <?php } ?> <?php if (!empty($this->plugin_settings['modules']['contact_status']) && $this->plugin_settings['modules']['contact_status'] == 1) { ?> <div class="contact"> <?php list($open, $close) = !empty($this->plugin_settings['modules']['contact_effects']) && strstr($this->plugin_settings['modules']['contact_effects'], '|') ? explode('|', $this->plugin_settings['modules']['contact_effects']) : explode('|', 'move_top|move_bottom'); ?> <div class="form <?php echo esc_attr($open); ?>"> <span class="close-contact_form"> <img src="<?php echo WPMM_URL ?>assets/images/close.svg" alt=""> </span> <form class="contact_form"> <?php do_action('wpmm_contact_form_start'); ?> <p class="col"><input type="text" placeholder="<?php _e('Name', $this->plugin_slug); ?>" data-rule-required="true" data-msg-required="<?php esc_attr_e('This field is required.', $this->plugin_slug); ?>" name="name" class="name_input" /></p> <p class="col last"><input type="text" placeholder="<?php _e('E-mail', $this->plugin_slug); ?>" data-rule-required="true" data-rule-email="true" data-msg-required="<?php esc_attr_e('This field is required.', $this->plugin_slug); ?>" data-msg-email="<?php esc_attr_e('Please enter a valid email address.', $this->plugin_slug); ?>" name="email" class="email_input" /></p> <br clear="all" /> <?php do_action('wpmm_contact_form_before_message'); ?> <p><textarea placeholder="<?php _e('Your message', $this->plugin_slug); ?>" data-rule-required="true" data-msg-required="<?php esc_attr_e('This field is required.', $this->plugin_slug); ?>" name="content" class="content_textarea"></textarea></p> <?php do_action('wpmm_contact_form_after_message'); ?> <?php if (!empty($this->plugin_settings['gdpr']['status']) && $this->plugin_settings['gdpr']['status'] == 1) { ?> <div class="privacy_checkbox"> <label> <input type="checkbox" name="acceptance" value="YES" data-rule-required="true" data-msg-required="<?php esc_attr_e('This field is required.', $this->plugin_slug); ?>"> <?php _e("I've read and agree with the site's privacy policy", $this->plugin_slug); ?> </label> </div> <?php if(!empty($this->plugin_settings['gdpr']['contact_form_tail'])) { ?> <p class="privacy_tail"><?php echo wp_kses($this->plugin_settings['gdpr']['contact_form_tail'], wpmm_gdpr_textarea_allowed_html()); ?></p> <?php }} ?> <p class="submit"><input type="submit" value="<?php _e('Send', $this->plugin_slug); ?>"></p> <?php do_action('wpmm_contact_form_end'); ?> </form> </div> </div> <a class="contact_us" href="javascript:void(0);" data-open="<?php echo esc_attr($open); ?>" data-close="<?php echo esc_attr($close); ?>"><?php _e('Contact us', $this->plugin_slug); ?></a> <?php } ?> <?php if ((!empty($this->plugin_settings['general']['admin_link']) && $this->plugin_settings['general']['admin_link'] == 1) || (!empty($this->plugin_settings['gdpr']['status']) && $this->plugin_settings['gdpr']['status'] == 1)) { ?> <div class="author_link"> <?php if($this->plugin_settings['general']['admin_link'] == 1) { ?> <a href="<?php echo admin_url(); ?>"><?php _e('Dashboard', $this->plugin_slug); ?></a> <?php } ?> <?php if ($this->plugin_settings['gdpr']['status'] == 1) { ?> <a href="<?php echo esc_attr($this->plugin_settings['gdpr']['policy_page_link']); ?>" target="<?php echo !empty($this->plugin_settings['gdpr']['policy_page_target']) && $this->plugin_settings['gdpr']['policy_page_target'] == 1 ? '_blank' : '_self'; ?>"><?php echo esc_html($this->plugin_settings['gdpr']['policy_page_label']); ?></a> <?php } ?> </div> <?php } ?> </div> <script type='text/javascript'> var wpmm_vars = {"ajax_url": "<?php echo admin_url('admin-ajax.php'); ?>"}; </script> <?php // Hook before scripts, mostly for internationalization do_action('wpmm_before_scripts'); if (!empty($scripts) && is_array($scripts)) { foreach ($scripts as $src) { ?> <script src="<?php echo $src; ?>"></script> <?php } } // Do some actions do_action('wm_footer'); // this hook will be removed in the next versions do_action('wpmm_footer'); ?> <?php if (!empty($this->plugin_settings['bot']['status']) && $this->plugin_settings['bot']['status'] === 1) { ?> <script type='text/javascript'> jQuery(function($) { startConversation('homepage', 1); }); </script> <?php } ?> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка