userguide.php 692 B

1234567891011121314151617181920212223
  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. 'cache' => [
  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' => 'Cache',
  11. // A short description of this module, shown on the index page
  12. 'description' => 'Common interface for caching engines.',
  13. // Copyright message, shown in the footer for this module
  14. 'copyright' => '&copy; 2008–2016 Kohana Team - 2016-2018 Koseven Team - https://github.com/orgs/koseven/people',
  15. ]
  16. ]
  17. ];