Initial commit

This commit is contained in:
Daniel Brendel
2022-08-16 13:54:30 +02:00
commit 94353ac3c8
64 changed files with 32771 additions and 0 deletions

16
app/helper/TestHelper.php Normal file
View File

@ -0,0 +1,16 @@
<?php
/*
Asatru PHP - example helper
*/
/**
* Just an example helper function
*
* @param int $max
* @return int
*/
function MyExampleHelperFunction($max = 1000)
{
return rand(1, $max);
}