aboutsummaryrefslogtreecommitdiffstats
path: root/public/inc/dotenv.php
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-02-20 16:11:50 +0100
committerArmand Philippot <git@armandphilippot.com>2022-02-20 16:15:08 +0100
commit73a5c7fae9ffbe9ada721148c8c454a643aceebe (patch)
treec8fad013ed9b5dd589add87f8d45cf02bbfc6e91 /public/inc/dotenv.php
parentb01239fbdcc5bbc5921f73ec0e8fee7bedd5c8e8 (diff)
chore!: restructure repo
I separated public files from the config/dev files. It improves repo readability. I also moved dotenv helper to public/inc directory and extract the Matomo tracker in the same directory.
Diffstat (limited to 'public/inc/dotenv.php')
-rw-r--r--public/inc/dotenv.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/public/inc/dotenv.php b/public/inc/dotenv.php
new file mode 100644
index 0000000..eb297e8
--- /dev/null
+++ b/public/inc/dotenv.php
@@ -0,0 +1,24 @@
+<?php
+/**
+ * Dotenv helper.
+ */
+
+/**
+ * Get current environment defined in .env file.
+ *
+ * @since 1.2.0
+ *
+ * @return string Current env or empty string.
+ */
+function dap_get_current_env()
+{
+ if (file_exists(dirname(__DIR__) . '/vendor/autoload.php')) {
+ require_once dirname(__DIR__) . '/vendor/autoload.php';
+ $dotenv = Dotenv\Dotenv::createImmutable(dirname(__DIR__));
+ $dotenv->safeLoad();
+ $current_env = $_ENV['CURRENT_ENV'];
+ return $current_env;
+ } else {
+ return '';
+ }
+}