Four Python modules are intended to extend the functionality of the application:
The templates of these modules are named accordingly:
Rename a file to {name}.py to use this or that extension. For example:
action.py.template -> action.py
The module templates contain the functions called from the application in a certain moment. The code executed on function call is written in the function body.
For example, the action.py.template template has the def action.init_actions() function. To add a user menu, you have to:
action.py:
import examples # Import examples package
def init_actions():
# Call function to adding user-defined menus
examples.action.main()