userguide.php 726 B

1234567891011121314151617181920212223
  1. <?php defined('SYSPATH') OR die('No direct script access.');
  2. return array(
  3. // Leave this alone
  4. 'modules' => array(
  5. // This should be the path to this modules userguide pages, without the 'guide/'. Ex: '/guide/modulename/' would be 'modulename'
  6. 'orm' => array(
  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' => 'ORM',
  11. // A short description of this module, shown on the index page
  12. 'description' => 'Official ORM module, a modeling library for object relational mapping.',
  13. // Copyright message, shown in the footer for this module
  14. 'copyright' => '&copy; 2008–2012 Kohana Team',
  15. )
  16. )
  17. );