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

30 lines
676 B
PHP
Raw Normal View History

2020-02-09 23:02:19 +01:00
<?php
namespace Elements;
2020-04-04 01:15:59 +02:00
class Link extends StaticView {
2020-02-09 23:02:19 +01:00
const STYLESHEET = "stylesheet";
const MIME_TEXT_CSS = "text/css";
2020-04-04 01:15:59 +02:00
const FONTAWESOME = "/css/fontawesome.min.css";
const BOOTSTRAP = "/css/bootstrap.min.css";
const CORE = "/css/style.css";
const ADMIN = "/css/admin.css";
2020-02-09 23:02:19 +01:00
2020-04-03 15:56:04 +02:00
private string $type;
private string $rel;
private string $href;
2020-02-09 23:02:19 +01:00
function __construct($rel, $href, $type = "") {
2020-04-03 15:56:04 +02:00
$this->href = $href;
2020-02-09 23:02:19 +01:00
$this->type = $type;
$this->rel = $rel;
}
function getCode() {
$type = (empty($this->type) ? "" : " type=\"$this->type\"");
2020-04-03 15:56:04 +02:00
return "<link rel=\"$this->rel\" href=\"$this->href\"$type/>";
2020-02-09 23:02:19 +01:00
}
}