New help-center module adds a question-mark icon to the sidebar with an aside panel containing three sections: Documentation (permission- gated links to docs viewer and API docs), Keyboard Shortcuts (inline reference from HotkeyService with Mac/Win variants), and About (application info). Visible to all logged-in users — individual resource links respect existing permissions. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
573 B
PHP
17 lines
573 B
PHP
<?php
|
|
|
|
/**
|
|
* Module activation configuration.
|
|
*
|
|
* Modules listed here are loaded at boot time. The APP_ENABLED_MODULES env
|
|
* variable controls overrides with deterministic semantics:
|
|
* - APP_ENABLED_MODULES not set: use this config list
|
|
* - APP_ENABLED_MODULES='': explicit no-modules mode
|
|
* - APP_ENABLED_MODULES='a,b': exact module list from env
|
|
*
|
|
* Each entry must match a directory name under modules/ containing a module.php manifest.
|
|
*/
|
|
return [
|
|
'enabled_modules' => ['audit', 'addressbook', 'bookmarks', 'notifications', 'api-docs', 'help-center'],
|
|
];
|