Bolt\Controller\Backend\Database::addRoutes PHP Method

addRoutes() protected method

protected addRoutes ( Silex\ControllerCollection $c )
$c Silex\ControllerCollection
    protected function addRoutes(ControllerCollection $c)
    {
        $c->get('/dbcheck', 'check')->bind('dbcheck');
        $c->post('/dbupdate', 'update')->bind('dbupdate');
        $c->get('/dbupdate_result', 'updateResult')->bind('dbupdate_result');
    }