审查视图

application/extra/addons.php 519 字节
Karson authored
1 2
<?php
Karson authored
3 4
return [
    'autoload' => false,
何书鹏 authored
5
    'hooks' => [
何书鹏 authored
6 7 8
        'app_init' => [
            'crontab',
        ],
何书鹏 authored
9 10 11 12 13 14 15 16 17 18 19
        'config_init' => [
            'third',
        ],
    ],
    'route' => [
        '/third$' => 'third/index/index',
        '/third/connect/[:platform]' => 'third/index/connect',
        '/third/callback/[:platform]' => 'third/index/callback',
        '/third/bind/[:platform]' => 'third/index/bind',
        '/third/unbind/[:platform]' => 'third/index/unbind',
    ],
Karson authored
20 21
    'priority' => [],
];