We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1e311e7 + bd30be0 commit cad6408Copy full SHA for cad6408
2 files changed
src/WebApp/Layout.php
@@ -40,10 +40,17 @@ protected function renderHeader() {
40
$this->renderMeta().
41
$this->renderLinks().
42
$this->renderTitle().
43
+ $this->renderOtherHeader().
44
'</head>';
45
return $rc;
46
}
47
48
+ protected function renderOtherHeader() {
49
+ $rc = '';
50
+ foreach ($this->page->getOtherHeaders() AS $s) $rc .= $s;
51
+ return $rc;
52
+ }
53
+
54
protected function renderMeta() {
55
$rc = '<meta charset="utf-8">';
56
src/WebApp/Page.php
@@ -55,6 +55,10 @@ public function getMeta() {
57
58
+ public function getOtherHeaders() {
59
+ return array();
60
61
62
public function getMetaKeywords() {
63
return $this->app->getMetaKeywords();
64
0 commit comments