diff options
author | Malf Furious <m@lfurio.us> | 2017-02-05 18:02:00 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2017-02-05 18:02:00 -0500 |
commit | 0746eb18ff79bb94e2b1f1dca866b5541d4340cb (patch) | |
tree | 750ef690262b4badc9e5481b5e765badcbcae9c8 /app | |
parent | be9dd0f28fb63e46dfbafc8f9cc1764ac89cad92 (diff) | |
download | scrott-0746eb18ff79bb94e2b1f1dca866b5541d4340cb.tar.gz scrott-0746eb18ff79bb94e2b1f1dca866b5541d4340cb.zip |
Add global source code file
Diffstat (limited to 'app')
-rw-r--r-- | app/class/globals.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/class/globals.php b/app/class/globals.php new file mode 100644 index 0000000..3512961 --- /dev/null +++ b/app/class/globals.php @@ -0,0 +1,22 @@ +<?php + +/* + * SCROTT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + * + * For more information, please refer to UNLICENSE + */ + +/* + * This file defines various functions which exist in the global namespace. + * These are utility functions and constants for the Scrott application. + */ + +define("__VERSION__", "v0.0"); + +?> |