Modules
- Ariadne >
- Library >
- Ariadne 2.4 >
- Manuals >
- Programmers Reference >
Why Modules?
Modules are used for generic functionality that is not directly related to an object or object type. For instance if you want to use a normal database connection to one of your old databases from inside Ariadne you can use mod_db.
Using Modules
Each module has its own structure and use, but they all have one thing in common: loading them.
load('mod_db.php');
After loading the module its functionality is available for use within your PINP template.

