web-base/Core/Elements/EmptyHead.class.php

26 lines
397 B
PHP
Raw Normal View History

2021-01-07 15:54:19 +01:00
<?php
2022-11-18 18:06:46 +01:00
namespace Core\Elements;
2021-01-07 15:54:19 +01:00
class EmptyHead extends Head {
public function __construct($document) {
parent::__construct($document);
}
protected function initSources() {
}
2021-04-02 21:58:06 +02:00
protected function initMetas(): array {
2021-01-07 15:54:19 +01:00
return array(
);
}
2021-04-02 21:58:06 +02:00
protected function initRawFields(): array {
2021-01-07 15:54:19 +01:00
return array();
}
2021-04-02 21:58:06 +02:00
protected function initTitle(): string {
2021-01-07 15:54:19 +01:00
return "";
}
}