PluginProbe
WP Directory Kit / 1.3.1
WP Directory Kit v1.3.1
1.5.6 1.5.5 1.5.4 1.5.3 trunk 1.1.0 1.1.6 1.1.8 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.8 1.4.0 1.4.1 All 35 releases
wpdirectorykit / application / views / email / membership_contact_owner.php

membership_contact_owner.php in WP Directory Kit 1.3.1, at application/views/email/membership_contact_owner.php

102 lines 5.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * The template for Email, notify about send on approve reservation.
5 * Receiver: owner of reservation
6 * This is the template that email layout
7 *
8 */
9
10 if (!defined('ABSPATH')) {
11 exit; // Exit if accessed directly.
12 }
13
14 ?>
15
16 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
17 <html xmlns="http://www.w3.org/1999/xhtml">
18
19 <head>
20 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
21 <title><?php echo wp_kses_post($subject); ?></title>
22 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
23 </head>
24
25 <body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" offset="0" style="padding: 0;width: 100%; background-color: #f7f7f7; -webkit-text-size-adjust: none;">
26 <div id="wrapper" dir="ltr" style="max-width: 600px; width:calc(100% - 30px); background-color: #fff; margin: 0 auto;border: 1px solid #dedede;box-shadow: 0 1px 4px rgb(0 0 0 / 10%);">
27
28 <!-- header -->
29 <div class="header" style="background-color: #2671cb;padding: 48px 48px;color: #FFF;">
30 <h2 style="margin:0;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #ab79a1; color: #ffffff; background-color: inherit;"">
31 <?php echo wp_kses_post($subject); ?>
32 </h2>
33 </div>
34
35 <!-- Body -->
36 <div class=" body" style="padding: 48px 48px;color: #636363; font-size: 14px;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;">
37
38 <?php if (is_string($data)) : ?>
39 <?php echo wp_kses_post($data); ?>
40 <?php else : ?>
41 <?php foreach ($data as $key => $value) : ?>
42 <?php if (!empty($value)) : ?>
43 <?php if (!is_string($value)) continue; ?>
44 <?php if ($key == 'subject') continue; ?>
45 <p>
46 <strong><?php echo esc_html__(ucfirst(str_replace('_', ' ', $key)), 'wpdirectorykit'); ?>:</strong> <?php echo wp_kses_post($value); ?><br />
47 </p>
48 <?php endif; ?>
49 <?php endforeach; ?>
50 <?php endif; ?>
51
52 <br/>
53 <p>
54 <strong><?php echo esc_html__('Message Details', 'wpdirectorykit'); ?>:</strong>
55 </p>
56 <?php if (is_string($message)) : ?>
57 <?php echo wp_kses_post($message); ?>
58 <?php else : ?>
59 <?php foreach ($message as $key => $value) : ?>
60 <?php if (!empty($value)) : ?>
61 <?php if (!is_string($value)) continue; ?>
62 <?php if ($key == 'subject') continue; ?>
63 <p>
64 <strong><?php echo esc_html__(ucfirst(str_replace('_', ' ', $key)), 'wpdirectorykit'); ?>:</strong> <?php echo wp_kses_post($value); ?><br />
65 </p>
66 <?php endif; ?>
67 <?php endforeach; ?>
68 <?php endif; ?>
69
70 <p>
71 <strong><?php echo esc_html__('Profile Contact Details', 'wpdirectorykit'); ?>:</strong>
72 </p>
73 <ul class="wdk-list" style="margin:0;padding: 0;list-style: none;">
74 <?php if(wmvc_show_data('display_name', $user_profile, false, TRUE, TRUE)):?>
75 <li style="margin-bottom: 4px;" class="meta-item"><strong><?php echo esc_html__('Name', 'wpdirectorykit'); ?>:</strong> <?php echo esc_html(wmvc_show_data('display_name', $user_profile, false, TRUE, TRUE));?></li>
76 <?php endif;?>
77 <?php if(wmvc_show_data('wdk_phone', $user_profile, false, TRUE, TRUE)):?>
78 <li style="margin-bottom: 4px;" class="meta-item"><strong><?php echo esc_html__('Phone', 'wpdirectorykit'); ?>:</strong> <a href="tel:<?php echo esc_attr(wdk_filter_phone(wmvc_show_data('wdk_phone', $user_profile, false, TRUE, TRUE)));?>"><?php echo esc_html(wmvc_show_data('wdk_phone', $user_profile, false, TRUE, TRUE));?></a></li>
79 <?php endif;?>
80 <?php if(wmvc_show_data('user_email', $user_profile, false, TRUE, TRUE)):?>
81 <li style="margin-bottom: 4px;" class="meta-item"><strong><?php echo esc_html__('Email', 'wpdirectorykit'); ?>:</strong> <a href="mailto:<?php echo esc_attr(wmvc_show_data('user_email', $user_profile, false, TRUE, TRUE));?>"><?php echo esc_html(wmvc_show_data('user_email', $user_profile, false, TRUE, TRUE));?></a></li>
82 <?php endif;?>
83 <?php if(wmvc_show_data('wdk_address', $user_profile, false, TRUE, TRUE)):?>
84 <li style="margin-bottom: 4px;" class="meta-item"><strong><?php echo esc_html__('Address', 'wpdirectorykit'); ?>:</strong> <?php echo esc_html(wmvc_show_data('wdk_address', $user, false, TRUE, TRUE));?></li>
85 <?php endif;?>
86 <?php if(wmvc_show_data('wdk_city', $user_profile, false, TRUE, TRUE)):?>
87 <li style="margin-bottom: 4px;" class="meta-item"><strong><?php echo esc_html__('City', 'wpdirectorykit'); ?>:</strong> <?php echo esc_html(wmvc_show_data('wdk_city', $user, false, TRUE, TRUE));?></li>
88 <?php endif;?>
89 </ul>
90
91 </div>
92
93 <!-- Footer -->
94 <div class="footer" style="padding: 25px 48px;color: #4e5254; font-weight: 500;font-size: 14px;line-height: 1.6;font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;border-top: 1px solid #eee;">
95 <?php echo esc_html__('Thanks', 'wpdirectorykit'); ?>, </br>
96 <?php echo esc_html__('Best regards', 'wpdirectorykit'); ?>, </br>
97 <?php echo esc_html(get_bloginfo('name')); ?> </br>
98 </div>
99 </div>
100 </body>
101
102 </html>