-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathView.php
More file actions
456 lines (401 loc) · 10.4 KB
/
View.php
File metadata and controls
456 lines (401 loc) · 10.4 KB
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
<?php if ( ! defined('DENY_ACCESS')) exit('403: No direct file access allowed');
/**
* A Bright CMS
*
* Open source, lightweight, web application framework and content management
* system in PHP.
*
* @package A Bright CMS
* @author Gabriel Liwerant
*/
/**
* View Class
*
* Base view for application.
*
* Renders the standard template pages.
*
* @subpackage core
* @author Gabriel Liwerant
*/
class View
{
/**
* Error codes for View
*/
const INCORRECT_DATA_TYPE_FOR_META_TAG = 1001;
/**
* Store application HTTP root path
*
* @var string $_http_root_path
*/
protected $_http_root_path;
/**
* Store application CSS path
*
* @var string $_css_path
*/
protected $_css_path;
/**
* Store application JavaScript path
*
* @var string $_js_path
*/
protected $_js_path;
/**
* Store application images path
*
* @var string $_images_path
*/
protected $_images_path;
/**
* Set some properties to constants here to help us with refactoring.
*/
public function __construct()
{
$this->_http_root_path = HTTP_ROOT_PATH;
$this->_css_path = CSS_PUBLIC_PATH;
$this->_js_path = JS_PUBLIC_PATH;
$this->_images_path = IMAGES_PATH;
}
/**
* Build IE conditional tags with embeded code.
*
* @param string $conditional The conditional statement to use
* @param string $embed Any code to embed in the statement
*
* @return string Built IE conditional with embeded code
*/
private function _buildIeConditional($conditional, $embed)
{
$conditional = '<!--[if ' . $conditional . ']>' . $embed . '<![endif]-->';
return $conditional;
}
/**
* Take an array of key => values and build a list of attributes out of it.
*
* @param array $attribute_data
*
* @return string
*/
private function _buildAttributeList($attribute_data)
{
$attribute_list = null;
foreach ($attribute_data as $key => $value)
{
if ( ! empty($value))
{
$attribute = $key . '="' . $value . '"';
$attribute_list .= $attribute . ' ';
}
}
return $attribute_list;
}
/**
* Build subpage title string.
*
* @param string $sub_title
* @param string|void $separator
*
* @return string
*/
public function buildTitleSubpage($sub_title, $separator = null)
{
return ' ' . $separator . ' ' . $sub_title;
}
/**
* Builds a standard HTML tag with optional class and/or id.
*
* @kludge I might be a bad person for writing this method.
*
* @param string $tag
* @param string $text
* @param string|void $class
* @param string|void $id
*
* @return string HTML
*/
public function buildGenericHtmlWrapper($tag, $text, $class = null, $id = null)
{
if ( ! empty($class))
{
$class_attr = ' class="' . $class . '"';
}
else
{
$class_attr = null;
}
if ( ! empty($id))
{
$id_attr = ' id="' . $id . '"';
}
else
{
$id_attr = null;
}
return '<' . $tag . ' ' . $id_attr . $class_attr . '>' . $text . '</' . $tag . '>';
}
/**
* Builds the meta tags for the head view.
*
* @param string $type Type section of meta tag
* @param string $value Content section of meta tag
*
* @return string Completed meta tag or error message
*/
public function buildHeadMeta($type, $value)
{
if (is_string($type) AND is_string($value))
{
$meta = '<meta ' . $type . ' content="' . $value . '" />';
}
else
{
throw ApplicationFactory::makeException('View Exception', self::INCORRECT_DATA_TYPE_FOR_META_TAG);
//throw new Exception('View Exception', self::INCORRECT_DATA_TYPE_FOR_META_TAG);
}
return $meta;
}
/**
* Build HTML head links from data.
*
* @todo consider refactoring attribute data to contain all attributes,
* which will require re-working json/xml
*
* @param string $rel
* @param string $href
* @param boolean $is_image Helps us build href
* @param array|void $attribute_data Alternate attributes
* @param string|void $cache_buster
*
* @return string HTML
*/
public function buildHeadLink($rel, $href, $is_image, $attribute_data = null, $cache_buster = null)
{
$attribute_list = null;
if ( ! empty($attribute_data))
{
$attribute_list = ' ' . $this->_buildAttributeList($attribute_data);
}
$href = $is_image ? IMAGES_PATH . '/' . $href : $href;
$link = '<link rel="' . $rel . '" href="' . $href . $cache_buster . '"' . $attribute_list . '/>';
return $link;
}
/**
* Build the HTML link tag for CSS files.
*
* @param string $name CSS file name
* @param array $css_data CSS file associated data
* @param string|void $cache_buster Appends query string to bust cache
*
* @return string Built CSS link tag
*/
public function buildHeadCss($name, $css_data, $cache_buster = null)
{
if ((boolean)$css_data['is_internal'])
{
$css = '<link rel="stylesheet" href="' . $this->_css_path . '/' . $name . '.css' . $cache_buster . '" />';
}
else
{
$css = '<link rel="stylesheet" href="' . $css_data['href'] . $cache_buster . '" />';
}
if ($css_data['ie_conditional'] !== '')
{
$css = $this->_buildIeConditional($css_data['ie_conditional'], $css);
}
return $css;
}
/**
* Build the script tags for JS files in the head section.
*
* @param array $js_data JS file associated data
* @param string|void $cache_buster Appends query string to bust cache
*
* @return string Built script tag for JS file
*/
public function buildJs($js_data, $cache_buster = null)
{
$cache_buster = null;
if ((bool)$js_data['is_internal'])
{
if ( ! empty($js_data['src']))
{
$src = 'src="' . $this->_js_path . '/' . $js_data['src'] . '.js' . $cache_buster . '"';
}
else
{
$src = null;
}
if ( ! isset($js_data['code']) OR empty($js_data['code']))
{
$code = null;
}
else
{
$code = $js_data['code'];
}
$js = '<script ' . $src . '>' . $code . '</script>';
}
else
{
$src = 'src="' . $js_data['src'] . '"';
if ( ! isset($js_data['code']) OR empty($js_data['code']))
{
$code = null;
}
else
{
$code = $js_data['code'];
}
$js = '<script ' . $src . '>' . $code . '</script>';
}
if ( ! empty($js_data['ie_conditional']))
{
$js = $this->_buildIeConditional($js_data['ie_conditional'], $js);
}
return $js;
}
/**
* Build an HTML link list column for display.
*
* @param string $list_name Name of the link list
* @param array $list_data Data to build the links in the list
*
* @return string
*/
public function buildLinkListColumn($list_name, $list_data)
{
$list_items = null;
foreach ($list_data as $text => $path)
{
$list_items .= $this->buildGenericHtmlWrapper('li', $this->buildAnchorTag($text, $path, false));
}
$list = '<div class="link-column"><p>' . $list_name . '</p><ul>' . $list_items . '</ul></div>';
return $list;
}
/**
* Build an HTML anchor tag.
*
* @param string $text Text for anchor tag display
* @param string $path Used to build the href attribute
* @param boolean $is_internal If href is local or remote
* @param string $target
* @param string|void $title Title attribute
* @param string|void $class Class attribute
* @param string|void $id Id attribute
*
* @return string Built HTML anchor tag
*/
public function buildAnchorTag(
$text,
$path,
$is_internal,
$target = '_blank',
$title = null,
$class = null,
$id = null
)
{
if ((boolean)$is_internal)
{
$href = $this->_http_root_path . '/' . $path;
}
else
{
$href = $path;
}
// Array to loop through in attribute builder method
$anchor_data['href'] = $href;
$anchor_data['target'] = $target;
$anchor_data['title'] = $title;
$anchor_data['class'] = $class;
$anchor_data['id'] = $id;
$attribute_list = $this->_buildAttributeList($anchor_data);
$anchor = '<a ' . $attribute_list . '>' . $text . '</a>';
return $anchor;
}
/**
* Builds the header navigation for the header view.
*
* @param string $nav The HTML for the navigation item
* @param string $list_class CSS class to use with list item
* @param string|void $separator_string Separating HTML between items
*
* @return string Built navigation item or error message
*/
public function buildNav($nav, $list_class, $separator_string = null)
{
if ( ! empty($separator_string))
{
$separator = '<span class="separator">' . $separator_string . '</span>';
}
else
{
$separator = null;
}
$header_nav = $this->buildGenericHtmlWrapper('li', $nav . $separator, $list_class);
return $header_nav;
}
/**
* Build the HTML for the copyright.
*
* @param array $copyright_data Data pertaining to copyright information
* @param string|void $separator Optional separator string to append
* @param boolean $show_current_date Whether or not we show the current date
*
* @return string Built HTML copyright from data
*/
public function buildCopyright($copyright_data, $separator = null, $show_current_date = true)
{
$copyright = $copyright_data['symbol'];
$copyright .= ' ' . $copyright_data['holder'];
$copyright .= ' ' . $copyright_data['start_date'];
if ($show_current_date)
{
if ((int)$copyright_data['start_date'] < (int)date('Y'))
{
$copyright .= ' - ' . date('Y');
}
}
$separator = '<span class="separator">' . $separator . '</span>';
$copyright = $this->buildGenericHtmlWrapper('li', $copyright . $separator);
return $copyright;
}
/**
* Builds the brand logo section.
*
* @param string $src Src attribute
* @param string $alt Alt attribute
* @param string|void $id Id attribute
*
* @return string Prepared HTML for logo with anchor tag
*/
public function buildBrandingLogo($src, $alt, $id = null)
{
$src = $this->_images_path . '/' . $src;
// Array to loop through in attribute builder method
$img_data['src'] = $src;
$img_data['alt'] = $alt;
$img_data['id'] = $id;
$attribute_list = $this->_buildAttributeList($img_data);
$logo = '<img ' . $attribute_list . '/>';
return $logo;
}
/**
* Renders the page using the default page setup.
*
* Override to use a different page structure.
*
* @param string $page_name Specific view page to load
*/
public function renderPage($page_name)
{
require_once TEMPLATE_PATH . '/head.php';
require_once TEMPLATE_PATH . '/header.php';
require_once VIEW_PATH . '/' . $page_name . '/index.php';
require_once TEMPLATE_PATH . '/footer.php';
}
}
// End of View Class
/* EOF system/core/View.php */