diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-20 12:51:05 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-20 12:51:05 -0400 |
commit | 8d69c49da595c60dae51c77d48f397ab97fdf318 (patch) | |
tree | 7fba4edb18c5c4c161e76828d5847733aca8d27b /doc/config.markdown | |
parent | cbf896e74e666f102f475787202d3402f229a919 (diff) |
Manage plugins from the user interface and from the command line
Diffstat (limited to 'doc/config.markdown')
-rw-r--r-- | doc/config.markdown | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/doc/config.markdown b/doc/config.markdown index 0e3c3198..0325358d 100644 --- a/doc/config.markdown +++ b/doc/config.markdown @@ -15,14 +15,21 @@ define('LOG_DRIVER', 'file'); // Other drivers are: syslog, stdout, stderr or fi The log driver must be defined if you enable the debug mode. The debug mode logs all SQL queries and the time taken to generate pages. -Plugins folder --------------- +Plugins +------- + +Plugin folder: ```php -// Plugin directory define('PLUGINS_DIR', 'data/plugins'); ``` +Enable/disable plugin installation from the user interface: + +```php +define('PLUGIN_INSTALLER', true); // Default is true +``` + Folder for uploaded files ------------------------- |