Skip to content

1.12

Latest
Compare
Choose a tag to compare
@gueff gueff released this 02 Jun 15:26
· 1 commit to 1.x since this release

added

  • Config MVC_ROUTING_DIR / \MVC\Config::get_MVC_ROUTING_DIR();
    • allows to read routing files from multiple modules at once (before only routing files from primary module got read)
    • in any module config you want to get read its routing files add $aConfig['MVC_ROUTING_DIR'][] = realpath(__DIR__ . '/../../../') . '/routing';
    • primary module routing files are set to get read by default (set in config/_mvc.php) (Backwards compatibilty)

removed

  • $aConfig['MVC_ROUTING_CLASS']
  • $aConfig['MVC_ROUTING_JSON']

fixed

  • smaller typos

@gueff