审查视图

application/extra/addons.php 356 字节
王晓刚 authored
1 2 3 4 5 6
<?php

return array (
  'autoload' => false,
  'hooks' => 
  array (
王晓刚 authored
7 8 9 10
    'app_init' => 
    array (
      0 => 'epay',
    ),
王晓刚 authored
11 12 13
  ),
  'route' => 
  array (
王晓刚 authored
14 15 16 17
    '/example$' => 'example/index/index',
    '/example/d/[:name]' => 'example/demo/index',
    '/example/d1/[:name]' => 'example/demo/demo1',
    '/example/d2/[:name]' => 'example/demo/demo2',
王晓刚 authored
18 19
  ),
);