module.config.php 762 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * @version 7.6
  4. */
  5. return array(
  6. 'routes' => array(
  7. 'install-index' => array(
  8. 'install',
  9. array(
  10. 'controller' => 'index',
  11. 'action' => 'index',
  12. ),
  13. ),
  14. 'install-action' => array(
  15. 'install/:action',
  16. array(
  17. 'controller' => 'index',
  18. ),
  19. ),
  20. ),
  21. 'view' => array(
  22. 'layouts_path' => __DIR__ . '/../view/layout',
  23. 'views_path' => __DIR__ . '/../view',
  24. 'layout_file' => 'layout.phtml',
  25. ),
  26. 'session' => array(
  27. 'namespace' => '%INSTALL_SESSION_NAMESPACE%',
  28. 'secret' => '%INSTALL_SESSION_SECRET%',
  29. ),
  30. );