From 7814636cafc70ef47eea7f91a9eea5b3338546a1 Mon Sep 17 00:00:00 2001 From: Lee <42119604+Leesneaks@users.noreply.github.com> Date: Fri, 6 Nov 2020 14:16:54 +0000 Subject: [PATCH] Added custom_functions file Added a custom functions file for users to include any of their custom functions. --- system/functions.php | 1 + system/functions_custom.php | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 system/functions_custom.php diff --git a/system/functions.php b/system/functions.php index f3bff021..3f0d0cdc 100644 --- a/system/functions.php +++ b/system/functions.php @@ -11,6 +11,7 @@ use Twig\Loader\ArrayLoader as Twig_ArrayLoader; defined('MYAAC') or die('Direct access not allowed!'); +require SYSTEM . 'functions_custom.php'; function message($message, $type, $return) { diff --git a/system/functions_custom.php b/system/functions_custom.php new file mode 100644 index 00000000..3d8705d0 --- /dev/null +++ b/system/functions_custom.php @@ -0,0 +1,11 @@ +, Lee + * @copyright 2020 MyAAC + * @link https://my-aac.org + */ + +// Insert your custom functions here.