userguide.php 617 B

123456789101112131415161718192021222324
  1. <?php
  2. return [
  3. // Leave this alone
  4. 'modules' => [
  5. // This should be the path to this modules userguide pages, without the 'guide/'. Ex: '/guide/modulename/' would be 'modulename'
  6. 'ko7' => [
  7. // Whether this modules userguide pages should be shown
  8. 'enabled' => TRUE,
  9. // The name that should show up on the userguide index page
  10. 'name' => 'KO7',
  11. // A short description of this module, shown on the index page
  12. 'description' => 'Documentation for KO7 core/system.',
  13. // Copyright message, shown in the footer for this module
  14. 'copyright' => '&copy; 2008–2024 Koseven Team',
  15. ],
  16. ],
  17. ];