From 2e9bf9d29d1b0f87378d4ba62a846e954b6c0ff1 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Wed, 27 Oct 2021 12:03:51 +0200 Subject: [PATCH] Automatically load all the core helper files --- application/config/autoload.php | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/application/config/autoload.php b/application/config/autoload.php index be9f2d2f..fe3eb2e7 100644 --- a/application/config/autoload.php +++ b/application/config/autoload.php @@ -66,12 +66,23 @@ $autoload['libraries'] = ['database', 'session']; */ $autoload['helper'] = [ - 'url', - 'file', - 'language', 'asset', 'config', - 'render' + 'debug', + 'env', + 'file', + 'google_analytics', + 'http', + 'installation', + 'language', + 'password', + 'path', + 'permission', + 'render', + 'session', + 'setting', + 'url', + 'validation', ]; @@ -88,7 +99,10 @@ $autoload['helper'] = [ | */ -$autoload['config'] = ['google', 'email']; +$autoload['config'] = [ + 'google', + 'email' +]; /*