56 lines
1.3 KiB
PHP
56 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Elements;
|
|
|
|
use Objects\User;
|
|
|
|
abstract class Document {
|
|
|
|
protected Head $head;
|
|
protected Body $body;
|
|
protected User $user;
|
|
protected bool $databaseRequired;
|
|
|
|
public function __construct(User $user, $headClass, $bodyClass) {
|
|
$this->head = new $headClass($this);
|
|
$this->body = new $bodyClass($this);
|
|
$this->user = $user;
|
|
$this->databaseRequired = true;
|
|
}
|
|
|
|
public function getHead() { return $this->head; }
|
|
public function getBody() { return $this->body; }
|
|
public function getSQL() { return $this->user->getSQL(); }
|
|
public function getUser() { return $this->user; }
|
|
|
|
protected function sendHeaders() {
|
|
header("X-Frame-Options: DENY");
|
|
}
|
|
|
|
public static function createSearchableDocument($documentClass, $user) {
|
|
return new $documentClass($user);
|
|
}
|
|
|
|
function getCode() {
|
|
|
|
if ($this->databaseRequired) {
|
|
$sql = $this->user->getSQL();
|
|
if (is_null($sql)) {
|
|
die("Database is not configured yet.");
|
|
} else if(!$sql->isConnected()) {
|
|
die("Database is not connected: " . $sql->getLastError());
|
|
}
|
|
}
|
|
|
|
$body = $this->body->getCode();
|
|
$head = $this->head->getCode();
|
|
|
|
$html = "<!DOCTYPE html>";
|
|
$html .= "<html>";
|
|
$html .= $head;
|
|
$html .= $body;
|
|
$html .= "</html>";
|
|
return $html;
|
|
}
|
|
|
|
} |