aboutsummaryrefslogtreecommitdiff
path: root/includes/core
diff options
context:
space:
mode:
Diffstat (limited to 'includes/core')
-rw-r--r--includes/core/Main.php16
-rw-r--r--includes/core/Metadata.php13
2 files changed, 0 insertions, 29 deletions
diff --git a/includes/core/Main.php b/includes/core/Main.php
deleted file mode 100644
index 1bf1062..0000000
--- a/includes/core/Main.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-namespace WebCore;
-
-include "Metadata.php";
-
-class Main {
- public static function version(): string {
- if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/.git/refs/heads/trunk")) {
- return substr(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/.git/refs/heads/trunk"), 0, 8);
- } else if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/.version")) {
- return substr(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/.version"), 0, 8);
- }
- return "live";
- }
-} \ No newline at end of file
diff --git a/includes/core/Metadata.php b/includes/core/Metadata.php
deleted file mode 100644
index ce2dc2d..0000000
--- a/includes/core/Metadata.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php
-
-namespace WebCore\GUI;
-
-class Metadata {
- public static function title($title = null): string {
- if (isset($title)) {
- return "$title | Minteck's Website";
- } else {
- return "Minteck's Website";
- }
- }
-} \ No newline at end of file