diff options
-rw-r--r-- | .idea/vcs.xml | 6 | ||||
-rw-r--r-- | includes/functions.php | 8 | ||||
-rw-r--r-- | includes/header.php | 2 | ||||
-rw-r--r-- | index.php | 2 |
4 files changed, 16 insertions, 2 deletions
diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="VcsDirectoryMappings"> + <mapping directory="$PROJECT_DIR$" vcs="Git" /> + </component> +</project>
\ No newline at end of file diff --git a/includes/functions.php b/includes/functions.php index 470a740..defa152 100644 --- a/includes/functions.php +++ b/includes/functions.php @@ -8,4 +8,12 @@ function version() { } else { return "trunk"; } +} + +function build() { + if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/.build")) { + return substr(trim(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/.build")), 0, 8); + } else { + return "dev"; + } }
\ No newline at end of file diff --git a/includes/header.php b/includes/header.php index 90c5c2b..dcf51ae 100644 --- a/includes/header.php +++ b/includes/header.php @@ -1,7 +1,7 @@ <?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/functions.php"; ?> <!DOCTYPE html> <html lang="en"> -<head> +<head data-webx-version="<?= version() ?>" data-webx-build="#<?= build() ?>"> <meta charset="UTF-8"> <title>Minteck</title> <link rel="stylesheet" href="/assets/css/bootstrap.min.css"> @@ -1,3 +1,3 @@ <?php -require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/gui/header.php";
\ No newline at end of file +require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/header.php";
\ No newline at end of file |