Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/fluentformpro/src/views/frameless_view.php

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 + <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
4 + <head>
5 + <meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
6 + <meta http-equiv="Imagetoolbar" content="No"/>
7 + <meta name="viewport" content="width=device-width, initial-scale=1">
8 +
9 + <?php if(!empty($data['result']) && !empty($data['result']['redirectUrl'])): ?>
10 + <!-- Fallback for jquery error for redirect -->
11 + <meta http-equiv="refresh" content="5;url=<?php echo $data['result']['redirectUrl']; ?>" />
12 + <?php endif; ?>
13 +
14 + <?php
15 + wp_head();
16 + ?>
17 + </head>
18 + <body class="ff_frameless_page_body ff_frameless_page_<?php echo $form->id; ?> ff_frameless_status_<?php echo $status; ?>">
19 +
20 + <div class="ff_frameless_wrapper">
21 + <div class="ff_frameless_item">
22 + <div class="ff_frameless_header">
23 + <?php echo $title; ?>
24 + </div>
25 + <div class="ff_frameless_body">
26 + <?php echo $message; ?>
27 +
28 + <?php if (isset($data['loader']) && $data['loader']): ?>
29 + <div class="ff_paypal_loader_svg" style="text-align: center">
30 + <svg version="1.1"
31 + id="L4"
32 + xmlns="http://www.w3.org/2000/svg"
33 + xmlns:xlink="http://www.w3.org/1999/xlink"
34 + x="0px"
35 + y="0px"
36 + viewBox="0 0 100 100"
37 + enable-background="new 0 0 0 0"
38 + xml:space="preserve"
39 + width="50px"
40 + height="50px"
41 + style="margin: 0px auto;"
42 + >
43 + <circle fill="#000" stroke="none" cx="6" cy="50" r="6">
44 + <animate attributeName="opacity" dur="1s" values="0;1;0" repeatCount="indefinite" begin="0.1" />
45 + </circle>
46 + <circle fill="#000" stroke="none" cx="26" cy="50" r="6">
47 + <animate attributeName="opacity" dur="1s" values="0;1;0" repeatCount="indefinite" begin="0.2" />
48 + </circle>
49 + <circle fill="#000" stroke="none" cx="46" cy="50" r="6">
50 + <animate attributeName="opacity" dur="1s" values="0;1;0" repeatCount="indefinite" begin="0.3" />
51 + </circle>
52 + </svg>
53 + </div>
54 + <?php endif;?>
55 + </div>
56 + </div>
57 + </div>
58 + <?php
59 + wp_footer();
60 + ?>
61 +
62 + <?php if(!empty($data['result']) && !empty($data['result']['redirectUrl'])): ?>
63 + <script type="text/javascript">
64 + jQuery(document).ready(function ($) {
65 + window.location.href = "<?php echo $data['result']['redirectUrl']; ?>";
66 + });
67 + </script>
68 + <?php endif; ?>
69 +
70 + </body>
71 + </html>
72 +
73 +