-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.php
287 lines (230 loc) · 6.18 KB
/
theme.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<?php
if (!defined('e107_INIT'))
{
exit();
}
$sitetheme = e107::getPref('sitetheme');
$value = e107::getThemeConfig($sitetheme)->getPref();
e107::getThemeConfig($sitetheme)->setPref($pArray);
class theme implements e_theme_render
{
public function __construct()
{
///// CONSTANTS ////////////////////////////////////////////////////
define("THEME_DISCLAIMER", '');
define('COMMENTLINK', e107::getParser()->toGlyph('lni-comments-alt')); //works only in __construct()
}
public function init()
{
e107::lan('theme');
////// Your own css fixes ////////////////////////////////////////////////////
define('CORE_CSS', false);
////// Theme meta tags /////////////////////////////////////////////////////////
$this->set_metas();
/////// Theme css /////////////////////////////////////////////////////////////
$this->register_css();
/////// Theme js /////////////////////////////////////////////////////////////
$this->register_js();
/////// Theme fonts ///////////////////////////////////////////////////////////
$this->register_fonts();
/////// Theme icons ///////////////////////////////////////////////////////////
$this->register_icons();
/////// Inline css and js /////////////////////////////////////////////////////
$this->getInlineCodes();
}
public function set_metas()
{
e107::meta('viewport', 'width=device-width, initial-scale=1.0');
}
public function register_css()
{
e107::css('theme', 'css/e107.css'); //if define('CORE_CSS', false);
/* workaround, css loading is not working in theme_shortcodes */
$options['navbar'] = [
'file' => 'navbar-02',
'path' => 'header/navbars'
];
$options['masthead'] = [
'file' => 'header-11',
'path' => 'header/masthead'
];
foreach ($options as $css)
{
$path_css = "{$css['path']}/{$css['file']}.css";
e107::css('theme', $path_css);
}
/* theme css */
e107::css('theme', 'assets/css/glightbox.min.css');
e107::css('theme', 'assets/css/tiny-slider.css');
//e107::css('theme', 'css/loading-bar.min.css');
e107::css('theme', 'default.css');
}
public function register_js()
{
//e107::js('theme', 'bootstrap.bundle.min.js', 'jquery');
//e107::js('theme', 'assets/js/count-up.min.js', 'jquery');
e107::js('theme', 'assets/js/glightbox.min.js', 'jquery');
//e107::js('theme', 'assets/js/loading-bar.min.js', 'jquery');
e107::js('theme', 'assets/js/tiny-slider.js', 'jquery');
e107::js('theme', 'js/navbar.js', 'jquery');
$theme_prefs = e107::pref('theme');
$stickynavbar = varset($theme_prefs['stickynavbar'], true);
if ($stickynavbar)
{
e107::js('theme', 'js/stickynavbar.js', 'jquery');
}
$backtotop = varset($theme_prefs['backtotop'], true);
if ($backtotop)
{
e107::js('theme', 'js/backtotop.js', 'jquery');
}
e107::js('theme', 'js/fix.js', 'jquery');
}
public function register_fonts()
{
e107::css('url', 'https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap');
}
public function register_icons()
{
e107::css('theme', 'assets/css/lineicons.min.css');
//e107::css('url', 'https://cdn.lineicons.com/3.0/lineicons.css');
}
public function getInlineCodes()
{
$header_css =
'
.layout-home section[class*=" navbar-"].navbar-area {
background-color: transparent;
background: transparent;
position: absolute;
width: 100%;
z-index: 99;
}
.layout-home section[class*=" header-"].header-area {
padding: 0;
}
';
e107::css('inline', $header_css);
/* $footer_js = ' //======== tiny slider for clients
var clients_logo = new tns({
container: ".client-logos-two",
autoplay: true,
autoplayTimeout: 4000,
autoplayButtonOutput: false,
mouseDrag: true,
gutter: 0,
nav: false,
controls: false,
responsive: {
0: {
items: 2,
},
570: {
items: 3,
},
768: {
items: 4,
},
992: {
items: 5,
},
1400: {
items: 4,
},
},
});';
*/
e107::js('footer-inline', $footer_js);
}
function remove_ptags($text = '') // FIXME this is a bug in e107 if this is required.
{
$text = str_replace(array("<!-- bbcode-html-start --><p>", "</p><!-- bbcode-html-end -->"), "", $text);
return $text;
}
public function tablestyle($caption, $text, $mode = '', $options = [])
{
$style = varset($options['setStyle'], 'default');
$id = varset($options['uniqueId'], '');
if (e_DEBUG)
{
echo '
<!-- tablestyle initial: style=' . $style . ' mode=' . $mode . ' UniqueId=' . varset($options['uniqueId']) . ' -->
';
}
switch ($mode)
{
case "wm":
$text = $this->remove_ptags($text); //p tags is part of tablestyle
//$style = "wm";
break;
case "login_page":
$style = "splash";
break;
}
if (e_DEBUG)
{
echo "
<!-- tablestyle initial: style=" . $style . " mode=" . $mode . " UniqueId=" . varset($options['uniqueId']) . " -->
";
}
switch ($style)
{
case "none":
$text = $this->remove_ptags($text);
echo $text;
break;
case "heading-1":
case "splash":
if (!empty($caption))
{
echo '<h1 class="header-title">' . $caption . '</h1>';
}
echo '<p class="text-lg ' . $mode . '">' . $text . '</p>';
break;
case "heading-3":
if (!empty($caption))
{
echo '<h3 class="header-title">' . $caption . '</h3>';
}
echo $text;
break;
case "heading-6":
if (!empty($caption))
{
echo '<h6 class="header-title text-uppercase">' . $caption . '</h6>';
}
echo $text;
break;
case "widget":
echo '<div class="widget">';
if (!empty($caption))
{
echo '<h5 class="widget-title">' . $caption . '</h5>';
}
echo $text;
echo '</div>';
break;
case "footer-menu":
echo '<div class="footer-menu">';
if (!empty($caption))
{
echo '<h6 class="footer-title">' . $caption . '</h6>';
}
echo $text;
echo '</div>';
break;
case "main": //caption is in layout
echo $text;
break;
case "default":
default:
if (!empty($caption))
{
echo '<h4>' . $caption . '</h4>';
}
echo $text;
break;
return;
}
}
}