Review updates

This commit is contained in:
Adam Magness 2018-01-17 19:38:14 -05:00
parent a7d887a68e
commit ac374f7773
3 changed files with 4 additions and 4 deletions

View File

@ -141,7 +141,7 @@ installation, it will look like
$a->config['system']['addon'] = 'js_upload'; $a->config['system']['addon'] = 'js_upload';
This indicates the "js_upload" addon module is enabled. You may add additional This indicates the "js_upload" addon module is enabled. You may add additional
addons/addons using this same line in the configuration file. Change it to addons using this same line in the configuration file. Change it to
read read
$a->config['system']['addon'] = 'js_upload,poormancron'; $a->config['system']['addon'] = 'js_upload,poormancron';

View File

@ -9,7 +9,7 @@ Modules work by intercepting specific page requests (by URL path).
Addon names cannot contain spaces or other punctuation and are used as filenames and function names. Addon names cannot contain spaces or other punctuation and are used as filenames and function names.
You may supply a "friendly" name within the comment block. You may supply a "friendly" name within the comment block.
Each addon must contain both an install and an uninstall function based on the addon/addon name. Each addon must contain both an install and an uninstall function based on the addon name.
For instance "addon1name_install()". For instance "addon1name_install()".
These two functions take no arguments and are usually responsible for registering (and unregistering) event hooks that your addon will require. These two functions take no arguments and are usually responsible for registering (and unregistering) event hooks that your addon will require.
The install and uninstall functions will also be called (i.e. re-installed) if the addon changes after installation. The install and uninstall functions will also be called (i.e. re-installed) if the addon changes after installation.
@ -69,7 +69,7 @@ Remember to declare it with '&' if you wish to alter it.
Modules Modules
--- ---
Addons/addons may also act as "modules" and intercept all page requests for a given URL path. Addons may also act as "modules" and intercept all page requests for a given URL path.
In order for a addon to act as a module it needs to define a function "addon_name_module()" which takes no arguments and needs not do anything. In order for a addon to act as a module it needs to define a function "addon_name_module()" which takes no arguments and needs not do anything.
If this function exists, you will now receive all page requests for "http://my.web.site/addon_name" - with any number of URL components as additional arguments. If this function exists, you will now receive all page requests for "http://my.web.site/addon_name" - with any number of URL components as additional arguments.

View File

@ -12,6 +12,6 @@ Table addon
| plugin_admin | 1 = has admin config, 0 = has no admin config | tinyint(1) | NO | | 0 | | | plugin_admin | 1 = has admin config, 0 = has no admin config | tinyint(1) | NO | | 0 | |
Notes: Notes:
These are addons which have been enabled by the site administrator on the admin/addon page These are addons which have been enabled by the site administrator on the addon page
Return to [database documentation](help/database) Return to [database documentation](help/database)