Subversion Repositories oidplus

Rev

Rev 1018 | Rev 1050 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1018 Rev 1020
Line 86... Line 86...
86
$head_elems[] = '<title>'.htmlentities(combine_systemtitle_and_pagetitle(OIDplus::config()->getValue('system_title'), $static_title)).'</title>';
86
$head_elems[] = '<title>'.htmlentities(combine_systemtitle_and_pagetitle(OIDplus::config()->getValue('system_title'), $static_title)).'</title>';
87
$head_elems[] = '<script src="polyfill.min.js.php"></script>';
87
$head_elems[] = '<script src="polyfill.min.js.php"></script>';
88
$head_elems[] = '<script src="oidplus.min.js.php"></script>';
88
$head_elems[] = '<script src="oidplus.min.js.php"></script>';
89
$head_elems[] = '<link rel="stylesheet" href="oidplus.min.css.php">';
89
$head_elems[] = '<link rel="stylesheet" href="oidplus.min.css.php">';
90
$head_elems[] = '<link rel="shortcut icon" type="image/x-icon" href="favicon.ico.php">';
90
$head_elems[] = '<link rel="shortcut icon" type="image/x-icon" href="favicon.ico.php">';
-
 
91
if (OIDplus::baseConfig()->exists('CANONICAL_SYSTEM_URL')) {
91
$head_elems[] = '<link rel="canonical" href="'.htmlentities(OIDplus::canonicalURL()).'">';
92
        $head_elems[] = '<link rel="canonical" href="'.htmlentities(OIDplus::canonicalURL()).'">';
-
 
93
}
92
 
94
 
93
$plugins = OIDplus::getPagePlugins();
95
$plugins = OIDplus::getPagePlugins();
94
foreach ($plugins as $plugin) {
96
foreach ($plugins as $plugin) {
95
        $plugin->htmlHeaderUpdate($head_elems);
97
        $plugin->htmlHeaderUpdate($head_elems);
96
}
98
}