-
Notifications
You must be signed in to change notification settings - Fork 7
Developer Notes
RedDragonWebDesign edited this page Sep 4, 2020
·
27 revisions
If you are interesting in contributing to the code, here are some notes.
- You can turn on Debug Mode in My Account -> Administrator Options -> Website Settings -> Debug Mode. Debug mode on will do PHP
error_reporting(E_ALL)
- Whenever you make or modify a function, please add variable types. Example: Change
function setDebugMode($value)
tofunction setDebugMode(bool $value): void
. This helps with tooltips and with bug catching.