Added custom_functions file

Added a custom functions file for users to include any of their custom functions.
This commit is contained in:
Lee 2020-11-06 14:16:54 +00:00
parent cf2c5e36bc
commit 7814636caf
2 changed files with 12 additions and 0 deletions

View File

@ -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)
{

View File

@ -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.