2020-02-09 23:02:19 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Elements;
|
|
|
|
|
2020-04-03 15:56:04 +02:00
|
|
|
abstract class Head extends View {
|
|
|
|
|
|
|
|
protected array $sources;
|
|
|
|
protected string $title;
|
|
|
|
protected array $metas;
|
|
|
|
protected array $rawFields;
|
|
|
|
protected array $keywords;
|
|
|
|
protected string $description;
|
|
|
|
protected string $baseUrl;
|
2020-02-09 23:02:19 +01:00
|
|
|
|
|
|
|
function __construct($document) {
|
|
|
|
parent::__construct($document);
|
|
|
|
$this->sources = array();
|
2020-06-22 19:09:02 +02:00
|
|
|
$this->searchable = false;
|
2020-02-09 23:02:19 +01:00
|
|
|
$this->metas = $this->initMetas();
|
|
|
|
$this->rawFields = $this->initRawFields();
|
|
|
|
$this->title = $this->initTitle();
|
|
|
|
$this->initSources();
|
|
|
|
$this->init();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected abstract function initSources();
|
2021-04-02 21:58:06 +02:00
|
|
|
protected abstract function initMetas(): array;
|
|
|
|
protected abstract function initRawFields(): array;
|
|
|
|
protected abstract function initTitle(): string;
|
2020-02-09 23:02:19 +01:00
|
|
|
|
|
|
|
protected function init() {
|
|
|
|
$this->keywords = array();
|
|
|
|
$this->description = "";
|
|
|
|
$this->baseUrl = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setBaseUrl($baseUrl) { $this->baseUrl = $baseUrl; }
|
|
|
|
public function setDescription($description) { $this->description = $description; }
|
|
|
|
public function setKeywords($keywords) { $this->keywords = $keywords; }
|
|
|
|
public function setTitle($title) { $this->title = $title; }
|
2021-04-02 22:44:44 +02:00
|
|
|
public function getSources(): array { return $this->sources; }
|
2020-02-09 23:02:19 +01:00
|
|
|
public function addScript($type, $url, $js = '') { $this->sources[] = new Script($type, $url, $js); }
|
|
|
|
public function addRawField($rawField) { $this->rawFields[] = $rawField; }
|
|
|
|
public function addMeta($aMeta) { $this->metas[] = $aMeta; }
|
|
|
|
public function addLink($rel, $href, $type = "") { $this->sources[] = new Link($rel, $href, $type); }
|
2021-04-02 22:44:44 +02:00
|
|
|
public function addKeywords($keywords) { $this->keywords = array_merge($this->keywords, $keywords); }
|
|
|
|
public function getTitle(): string { return $this->title; }
|
2020-02-09 23:02:19 +01:00
|
|
|
|
2020-04-04 01:15:59 +02:00
|
|
|
public function addCSS($href, $type = Link::MIME_TEXT_CSS) { $this->sources[] = new Link(Link::STYLESHEET, $href, $type); }
|
2020-02-09 23:02:19 +01:00
|
|
|
public function addStyle($style) { $this->sources[] = new Style($style); }
|
|
|
|
public function addJS($url) { $this->sources[] = new Script(Script::MIME_TEXT_JAVASCRIPT, $url, ""); }
|
|
|
|
public function addJSCode($code) { $this->sources[] = new Script(Script::MIME_TEXT_JAVASCRIPT, "", $code); }
|
|
|
|
|
|
|
|
public function loadFontawesome() {
|
|
|
|
$this->addCSS(Link::FONTAWESOME);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function loadGoogleRecaptcha($siteKey) {
|
|
|
|
$this->addJS("https://www.google.com/recaptcha/api.js?render=$siteKey");
|
|
|
|
}
|
|
|
|
|
|
|
|
public function loadJQuery() {
|
|
|
|
$this->addJS(Script::JQUERY);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function loadBootstrap() {
|
|
|
|
$this->addCSS(Link::BOOTSTRAP);
|
|
|
|
$this->addJS(Script::BOOTSTRAP);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCode() {
|
|
|
|
$header = "<head>";
|
|
|
|
|
|
|
|
foreach($this->metas as $aMeta) {
|
|
|
|
$header .= '<meta';
|
|
|
|
foreach($aMeta as $key => $val) {
|
|
|
|
$header .= " $key=\"$val\"";
|
|
|
|
}
|
|
|
|
$header .= ' />';
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!empty($this->description)) {
|
|
|
|
$header .= "<meta name=\"description\" content=\"$this->description\" />";
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!empty($this->keywords)) {
|
|
|
|
$keywords = implode(", ", $this->keywords);
|
|
|
|
$header .= "<meta name=\"keywords\" content=\"$keywords\" />";
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!empty($this->baseUrl)) {
|
|
|
|
$header .= "<base href=\"$this->baseUrl\">";
|
|
|
|
}
|
|
|
|
|
|
|
|
$header .= "<title>$this->title</title>";
|
|
|
|
|
|
|
|
foreach($this->sources as $src) {
|
|
|
|
$header .= $src->getCode();
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($this->rawFields as $raw) {
|
|
|
|
$header .= $raw;
|
|
|
|
}
|
|
|
|
|
|
|
|
$header .= "</head>";
|
|
|
|
return $header;
|
|
|
|
}
|
|
|
|
}
|