-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
120 lines (97 loc) · 3.23 KB
/
functions.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php
function has_content($key) {
global $content;
return isset($content[$key]);
}
function yield_content($key = 'default', $echo = true) {
global $content;
$out = has_content($key) ? $content[$key] : '';
if ($echo) {
echo $out;
} else {
return $out;
}
}
function javascripts() {
global $content;
if (!isset($content['javascripts'])) $content['javascripts'] = '';
$args = func_get_args();
foreach($args as $script) {
if (substr($script, 0, 7) != 'http://') {
$script = "js/$script.js";
}
$content['javascripts'] .= '<script src="'.$script.'"></script>' . "\xA ";
}
}
function stylesheets() {
global $content;
if (!isset($content['stylesheets'])) $content['stylesheets'] = '';
$args = func_get_args();
foreach($args as $style) {
if (substr($style, 0, 7) != 'http://') {
$style = "css/$style.css";
}
$content['stylesheets'] .= '<link rel="stylesheet" href="'.$style.'">' . "\xA ";
}
}
function title($title) {
global $content;
$content['title'] = $title;
}
function debug($data){
echo '<script>';
echo 'console.log('. json_encode( $data ) .')';
echo '</script>';
}
if (!function_exists('generateTemplate')) {
function generateTemplate($templateName){
global $content, $template;
$template = $templateName.'.tpl.php';
ob_start();
if (file_exists(DIR_PATH.PARTIAL_PATH.$template)) {
include(DIR_PATH.PARTIAL_PATH.$template);
} else {
echo "<br />Error 404 : Template not found.<br />";
}
$content[$templateName] = ob_get_contents();
ob_end_clean();
return $templateName;
}
}
if (!function_exists('showMetaTags')) {
function showMetaTags($meta_title, $meta_description, $meta_keywords, $return = false)
{
global $content;
if (isset($meta_description) && !empty($meta_description)) {
$meta_description = $meta_description;
} else {
$meta_description = $meta_title;
}
if (isset($meta_keywords) && !empty($meta_keywords)) {
$meta_keywords = $meta_keywords;
} else {
$meta_keywords = $meta_title;
}
$request_uri = str_replace('/index', '', $_SERVER["REQUEST_URI"]);
$canonical_url = SERVER_PROTOCOL.'://'.$_SERVER['HTTP_HOST'].$request_uri;
$meta_tags = '';
if (isset($meta_description) && !empty($meta_description)) {
$meta_tags .= '<meta name="description" content="'.$meta_description.'"/><meta property="og:description" content="'.$meta_description.'"/>';
}
if (isset($meta_keywords) && !empty($meta_keywords)) {
$meta_tags .= '<meta name="keywords" content="'.$meta_keywords.'"/>';
}
if (isset($canonical_url) && !empty($canonical_url)) {
$meta_tags .= '<link rel="canonical" href="'.$canonical_url.'" /><meta property="og:url" content="'.$canonical_url.'"/>';
}
if (isset($page_title) && !empty($page_title)) {
$meta_tags .= '<title>'.$page_title.'</title><meta property="og:title" content="'.$page_title.'"/>';
}
if ($return == false) {
$content['meta_tags'] = $meta_tags;
} else {
return $meta_tags;
}
}
}
?>