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 @@ +<?php +/** + * Custom functions + * + * @package MyAAC + * @author Slawkens <slawkens@gmail.com>, Lee + * @copyright 2020 MyAAC + * @link https://my-aac.org + */ + +// Insert your custom functions here.