-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-bottom.php
76 lines (71 loc) · 2.74 KB
/
template-bottom.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
function slagle_edit_request()
{
$to = 'nic.winn@uthsc.edu';
$cc = 'cmooney@uthsc.edu, terron@uthsc.edu';
$actual_link = (isset($_SERVER['HTTPS']) ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
echo "<div class='row gutter'>
<ul class='button-group even-3'>
<li>
<a class='button expand fa fa-edit'
style='font-size: 1.5rem'
href='mailto:" . $to . "?subject=Slagle - " . $pagename . " (edit request)&cc=" . $cc . "&body=Edits for: " . $actual_link . "'>
Edit Page
</a>
</li>
<li>
<a class='button expand fa fa-eye'
style='font-size: 1.5rem'
href='http://slagledentalmeeting.com/" . basename($_SERVER['PHP_SELF']) . "'
target='_blank'>
Production View
</a>
</li>
<li>
<a class='button expand fa fa-edit'
style='font-size: 1.5rem'
href='mailto:" . $to . "?subject=Slagle - Menu" . $pagename . " (edit request)&cc=" . $cc . "&body=Current Menu:
%0D
• " . $GLOBALS['menu_1'] . "%0A
• " . $GLOBALS['menu_2'] . "%0A
• " . $GLOBALS['menu_2_a'] . "%0A
• " . $GLOBALS['menu_2_b'] . "%0A
• " . $GLOBALS['menu_2_c'] . "%0A
• " . $GLOBALS['menu_3'] . "%0A
• " . $GLOBALS['menu_3_a'] . "%0A
• " . $GLOBALS['menu_3_b'] . "%0A
• " . $GLOBALS['menu_3_c'] . "%0A
• " . $GLOBALS['menu_3_d'] . "%0A
• " . $GLOBALS['menu_3_e'] . "%0A
• " . $GLOBALS['menu_3_f'] . "%0A
• " . $GLOBALS['menu_4'] . "%0A
• " . $GLOBALS['menu_5'] . "%0A
• " . $GLOBALS['menu_6'] . "%0A
'>
Edit Menu
</a>
</li>
</ul>
</div>";
}
if ($_SERVER['SERVER_NAME'] == 'slagledentalmeeting.uthsc.edu') {
slagle_edit_request();
} else {
echo '';
}
?>
<footer class="row header-footer-box footer-box">
<div class="large-12 columns">
<p>© <?php echo date("Y") ?> William F. Slagle Dental Meeting • 
<a href="http://www.facebook.com/228909720561308" style="color: #3b5998;">
<i class="fa fa-facebook-square fa-lg"></i>
</a>
</p>
</div>
</footer>
</div><!--end wrapper-->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/foundation/js/foundation.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>