html_helper.php

Gesponsorde koppelingen

PHP script bestanden

  1. index.php
  2. html_helper.php

« Lees de omschrijving en reacties

Code (php)
PHP script in nieuw venster Selecteer het PHP script
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
457
458
459
460
461
462
<?php

/**
 * HTMLHelper
 *
 * Genereer gemakkelijk html tags.
 *
 * @author Bart Dieterman
 * @category Helpers
 */


class HtmlHelper {
    
    /**
     * Mogelijke doctypes
     *
     * @var array
     * @access private
     */

    private $__documentTypes = array(
        'html5' => '<!DOCTYPE HTML>',
        'html4_strict'  => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">',
        'html4_trans'  => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
        'html4_frame'  => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">',
        'xhtml_strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
        'xhtml_trans' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
        'xhtml_frame' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">',
        'xhtml_11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'
    );
    
    /**
     * Verschillende types om naar te linken in de head
     *
     * @var array
     * @access private
     */

       private $__linkTypes = array(
        'rss' => 'application/rss+xml',
        'css'  => 'text/css',
        'icon' => 'image/x-icon',
        'atom' => 'application/atom+xml'
    );
    
    /**
     * Mogelijkheden voor http-equiv in een meta tag
     *
     * @var array
     * @access private
     */

    private $__httpEquivs = array(
        'allow',
        'content-encoding',
        'content-language',
        'content-length',
        'content-type',
        'date',
        'expires',
        'last-modified',
        'location',
        'refresh',
        'set-cookie',
        'www-authenticate'
    );

    /**
     * HtmlHelper::documentType()
     *
     * Weergeeft een doctype
     *
     * Mogelijke doctypes:
     *
     *  - html5 : HTML5
     *  - html4_strict:  HTML4 Strict.
     *  - html4_trans:  HTML4 Transitional.
     *  - html4_frame:  HTML4 Frameset.
     *  - xhtml_strict: XHTML1 Strict.
     *  - xhtml_trans: XHTML1 Transitional.
     *  - xhtml_frame: XHTML1 Frameset.
     *  - xhtml_11: XHTML1.1.
     *
     * Standaard word xhtml-strict gebruikt
     *
     * @param string    $type Doctype te gebruiken
     * @return string
     * @access public
     */

    public function doc_type($type = 'xhtml_strict') {
       return $this->__documentTypes[$type].PHP_EOL;
    }

    
    /**
     * HtmlHelper::meta()
     *
     * Weergeeft een meta tag.
     *
     * Hiermee kan bovendien ook de titel van de pagina weergegeven worden, gebruik $type = 'title'
     *
     * Bij de volgende types word http-equiv gebruikt:
     * - allow
     * - content-encoding
     * - content-language
     * - content-length
     * - content-type
     * - date
     * - expires
     * - last-modified
     * - location
     * - refresh
     * - set-cookie
     * - www-authenticate
     *
     * @param string    $type Type meta data
     * @param string    $content De content van de meta tag
     * @param mixed  $options   Overige html attributen die in de link worden geplaatst
     * @return string
     * @access public
     */

    public function meta($type, $content, $options = '') {
        
        if ($type === 'title') {
            $meta = '<title>'.$content.'</title>';
            return $meta;
        }

        
        $meta = '<meta ';
        
        if (in_array($type, $this->__httpEquivs)) {
            $meta .= 'http-equivs="'.$type.'"';
        }
else {
            $meta .= 'name="'.$type.'" ';
        }

        
        $meta .= 'content="'.$content.'" ';
        
        $meta .= $this->options($options);
        
        $meta .= '/>';
        
        return $meta.PHP_EOL;
        
    }

    
    /**
     * HtmlHelper::link_tag()
     *
     * Genereert een <link> of <script> naar een bestand.
     *
     * U kunt bij type de volgende afkortingen gebruiken:
     * - rss : Een link naar een rss bestand
     * - javascript : Een script tag met $url als src
     * - icon : Een link naar uw favicon
     * - atom : Een link naar uw atom feed
     *
     * @param string $type      De type link
     * @param string $url       De url van het te linken bestandt
     * @param string $rel       De relaltie met de url
     * @param string $media     Het medium waar de link voor geld
     * @param mixed  $options   Overige html attributen die in de link worden geplaatst
     * @acces public
     * @return string
     */

    public function link_tag($type, $url, $rel = null, $media = null, $options = '') {
        if ($type === 'javascript') {
            $link_tag = '<script type="text/javascript" src="'.$url.'"';
            if (is_array($options)) {
                foreach ($options as $key => $value) {
                    $link_tag .= ' '.$key.'="'.$value.'"';
                }
            }

            $link_tag .= '></script>';
        }
else {
            if (isset($type)) {
                if (isset($this->__linkTypes[$type])) {
                    $link_tag = '<link type="'.$this->__linkTypes[$type].'" href="'.$url.'"';
                }
else {
                    $link_tag = '<link type="'.$type.'" href="'.$url.'"';
                }
            }
else {
                $link_tag = '<link href="'.$url.'"';
            }

            
            if (isset($rel)) {
                $link_tag .= ' rel="'.$rel.'"';
            }

            
            if (isset($media)) {
                $link_tag .= ' media="'.$media.'"';
            }

            
            $link_tag .= $this->options($options);
            
            $link_tag .= ' />';
        }

        return $link_tag.PHP_EOL;
    }

    
    /**
     * HtmlHelper::link()
     *
     * Genereert een html anchor tag naar de opgegeven url
     *
     * Wanneer er geen text is opgegeven, word de titel gebruikt
     * Wanneer er geen titel is opgegeven, word de text gebruikt
     *
     * @param string $url       De url waar naatoe word gelinkt
     * @param string $text      De text die tussen <a> en </a> word geplaatst
     * @param string $title     De titel van de link
     * @param mixed  $options   Overige html attributen die in de link worden geplaatst
     * @acces public
     * @return string
     */

    public function link($url, $text = null, $title = null, $options = '') {
    
        $link = '<a ';
    
        if (!isset($text)) {
            $text = $url;
        }

    
        if (!isset($title)) {
            if (isset($options['title'])) {
                $title = $options['title'];
            }
else {
                $title = $text;
            }
            
        }

        $title = $this->replace_quotes($title);
        
    
        $link .= 'href="'.$url.'" title="'.$title.'"';
    
        $link .= $this->options($options);
    
        $link .= '>'.$text.'</a>';
    

    
        return $link.PHP_EOL;
 
    }

    
    /**
     * HtmlHelper::img()
     *
     * Genereert een afbeelding
     *
     * Als er geen alt is opgegeven, word een alt="" gebruikt, omdat het een vereiste is van XHTML scrict
     *
     * @param string $path      Het pad naar de afbeelding
     * @param string $alt       Wat getoont word, als de afbeelding niet geladen kan worden
     * @param mixed  $options   Overige html attributen
     * @acces public
     * @return string
     */

    public function img($path, $alt = null, $options = '') {
        $img = '<img ';
        
        $img .= 'src="'.$path.'" ';
        
        if (!isset($alt)) {
            if (!isset($options['alt'])) {
                $alt = '';
            }
else {
                $alt = $options['alt'];
            }
        }

        
        $alt = $this->replace_quotes($alt);
        
        $img .= 'alt="'.$alt.'"';
        
        $img .= $this->options($options);
        
        $img .= ' />';
        
        return $img.PHP_EOL;      
        
    }

    
    /**
     * HtmlHelper::br()
     *
     * Genereert 1 of meerdere <br /> tags
     *
     * @param string $num      Het aantal keer dat de tag herhaalt moet worden
     * @acces public
     * @return string
     */

    public function br($num = 1){
        return str_repeat('<br />', $num);
    }


    /**
     * HtmlHelper::heading()
     *
     * Genereert een heading tag, standaar <h1>
     *
     * @param string $text  Wat tussen de <h1> en </h1> tags komt te staan
     * @param string $head  De groote van de heading
     * @acces public
     * @return string
     */

    public function heading($text, $head = 1) {
        return '<h'.$head.'>'.$text.'</h'.$head.'>'.PHP_EOL;
    }

    
    /**
     * HtmlHelper::par()
     *
     * Genereert een paragraaf. Als er geen text is opgegeven, alleen <p> of </p>
     *
     * @param string $class    De class van de paragraaf
     * @param string $text  
     * @param string $options  Overige html attributen
     * @param bolean $closetag Als er geen text is opgegeven, en dit is true, word </p> gereturnd
     * @acces public
     * @return string
     */

    public function par($class = null, $text = null, $options = '', $closetag = false) {
        if (!isset($text)) {
            if ($closetag) {
                return '</p>';
            }
        }

        $par = '<p';
        
        if (isset($class)) {
            $class = $this->replace_quotes($class);
            $par .= ' class="'.$class.'"';
        }

        
        $par .= $this->options($options);
        
        if (isset($text)) {
            $par .= '>'.$text.'</p>';
        }
else {
            $par .= '>';
        }

        
        return $par.PHP_EOL;
        
    }

    
    /**
     * HtmlHelper::par()
     *
     * Genereert een div. Als er geen text is opgegeven, alleen <div> of </div>
     *
     * @param string $class    De class van de div
     * @param string $text  
     * @param string $options  Overige html attributen
     * @param bolean $closetag Als er geen text is opgegeven, en dit is true, word </div> gereturnd
     * @acces public
     * @return string
     */

    public function div($class = null, $text = null, $options = '', $closetag = false) {
        if (!isset($text)) {
            if ($closetag) {
                return '</div>';
            }
        }

        $div = '<div';
        
        if (isset($class)) {
            $class = $this->replace_quotes($options);
            $div .= ' class="'.$class.'"';
        }

        
        $div .= $this->options($options);
        
        if (isset($text)) {
            $div .= '>'.$text.'</div>';
        }
else {
            $div .= '>';
        }

        
        return $div.PHP_EOL;
        
    }

    
    /**
     * HtmlHelper::listing()
     *
     * Genereert een georderde lijst (ol), ongeorderde lijst (ul) of een defenitie lijst (dl)
     *
     * Met een ol en ul is het mogelijk om een multidimensional arrays in te voeren.
     * Bij een dl dient een associative array ingevoerd te worden.
     *
     * @param string $data  Een array
     * @param string $type  UL, OL of DL. UL is standaard
     * @acces public
     * @return string
     */

    public function listing($data, $type = 'ul')
    {

        $recursion = __FUNCTION__;

        $listing = '<'.$type.'>'.PHP_EOL;
        
        if ($type === 'dl') {
            foreach ($data as $dt => $dd) {
                $listing .= '<dt>'.$dt.'</dt><dd>'.$dd.'</dd>'.PHP_EOL;
            }
        }
else {
            if (is_array($data)) {
                foreach ($data as $key => $elem) {
                    if (is_array($elem)) {
                        $listing .= '<li>'.$key.$this->$recursion($elem, $type).'</li>'.PHP_EOL;
                    }
else {
                        $listing .= '<li>'.$elem.'</li>'.PHP_EOL;
                    }
                }
            }
else {
                $listing .= '<li>'.$data.'</li>'.PHP_EOL;
            }
        }

        $listing .= '</'.$type.'>'.PHP_EOL;
              
        return $listing;
        
    }

    
    /**
     * HtmlHelper::options()
     *
     * Genereert de overige atributen van een tag
     *
     * @param mixed $options
     * @acces private
     * @return string
     */

    private function options($options) {
        if (is_array($options)) {
            foreach ($options as $key => $value) {
                $value = $this->replace_quotes($value);
                
                $out = ' '.$key.'="'.$value.'"';
                return $out;
            }
        }
    }

    
    /**
     * HtmlHelper::replace_quotes()
     *
     * Vervangt ' door &#39; en " door &#34;
     *
     * @param string $string
     * @acces private
     * @return string
     */

    private function replace_quotes($string) {
        $string = str_replace("'", "&#39;", $string);
        $string = str_replace('"', "&#34;", $string);
        
        return $string;
    }
    
}


/* Einde van html_helper.php */

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.