Zend framework view helper head
Door Wesley Overdijk, 17 jaar geleden, 5.822x bekeken
Dit is een view helper voor het zend framework. Je kan hiermee de 'head' van de pagina iets makkelijker opbouwen. De standaard view helpers kunnen nog gebruikt worden, boven de head helper. Er zijn voor nu nog geen comments toegevoegd, maar het spreekt op zich allemaal voor zich.
Voorbeeld gebruik:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
<?php
echo $this->head()
->meta('Author', 'Wesley Overdijk')
->addCss($this->themePath.'/css/default.css')
->titleSeperator(' - ')
->appendTitle('Some random page title.')
->setContentType()
->appendTitle('An adition to the page title')
//This would normally kill the 2 page titles (overwrite them)
#->setTitle('I killed the 2 appended titles lol')
->disableCache();
?>
echo $this->head()
->meta('Author', 'Wesley Overdijk')
->addCss($this->themePath.'/css/default.css')
->titleSeperator(' - ')
->appendTitle('Some random page title.')
->setContentType()
->appendTitle('An adition to the page title')
//This would normally kill the 2 page titles (overwrite them)
#->setTitle('I killed the 2 appended titles lol')
->disableCache();
?>
OUTPUT:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<head>
<link href="/public/themes/default/css/default.css" media="screen" rel="stylesheet" type="text/css" />
<meta name="Author" content="Wesley Overdijk" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="cache" content="NO-CACHE" />
<meta http-equiv="pragma" content="NO-CACHE" />
<meta http-equiv="content-language" content="en-US" />
<title>Some random page title. - An adition to the page title</title>
</head>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<head>
<link href="/public/themes/default/css/default.css" media="screen" rel="stylesheet" type="text/css" />
<meta name="Author" content="Wesley Overdijk" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="cache" content="NO-CACHE" />
<meta http-equiv="pragma" content="NO-CACHE" />
<meta http-equiv="content-language" content="en-US" />
<title>Some random page title. - An adition to the page title</title>
</head>
Gesponsorde koppelingen
PHP script bestanden
Er zijn 2 reacties op 'Zend framework view helper head'
Om te reageren heb je een account nodig en je moet ingelogd zijn.
PHP hulp
0 seconden vanaf nu