From c14da77997880189e6f4b7012d40dec227b9b225 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 20 Oct 2021 22:49:22 +0200 Subject: chore: add php template and includes (config, i18n and utils) --- htdocs/includes/utils.php | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 htdocs/includes/utils.php (limited to 'htdocs/includes/utils.php') diff --git a/htdocs/includes/utils.php b/htdocs/includes/utils.php new file mode 100644 index 0000000..8b661d7 --- /dev/null +++ b/htdocs/includes/utils.php @@ -0,0 +1,31 @@ + + * @copyright 2021 Armand Philippot + * @license http://www.opensource.org/licenses/mit-license.php MIT + * @link https://demo.armandphilippot.com/ + * @since 1.0.0 + */ + +/** + * Get current environment defined in .env file. + * + * @since 1.0.0 + * + * @return string Current env or empty string. + */ +function dap_get_current_env() +{ + if (file_exists(__DIR__ . '/vendor/autoload.php')) { + require_once __DIR__ . '/vendor/autoload.php'; + $dap_dotenv = Dotenv\Dotenv::createImmutable(__DIR__); + $dap_dotenv->safeLoad(); + $dap_current_env = $_ENV['WP_THEME_ENV']; + return $dap_current_env; + } else { + return ''; + } +} -- cgit v1.2.3