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

26 lines
370 B
PHP
Raw Normal View History

2021-01-07 15:54:19 +01:00
<?php
namespace Elements;
class EmptyHead extends Head {
public function __construct($document) {
parent::__construct($document);
}
protected function initSources() {
}
protected function initMetas() {
return array(
);
}
protected function initRawFields() {
return array();
}
protected function initTitle() {
return "";
}
}