Skip to content

Instantly share code, notes, and snippets.

@yahuarkuntur
Created October 29, 2012 22:25
Show Gist options
  • Select an option

  • Save yahuarkuntur/3976942 to your computer and use it in GitHub Desktop.

Select an option

Save yahuarkuntur/3976942 to your computer and use it in GitHub Desktop.

Revisions

  1. yahuarkuntur created this gist Oct 29, 2012.
    16 changes: 16 additions & 0 deletions app.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,16 @@
    $app['security.firewalls'] = array(
    'login' => array(
    'pattern' => '^/login$',
    'anonymous' => true,
    ),
    'admin' => array(
    'pattern' => '^/admin',
    'form' => array(
    'login_path' => '/login',
    'check_path' => '/admin/login_check'),
    'logout' => array('logout_path' => '/admin_logout', 'target_url' => '/admin'),
    'users' => $app->share(function () use ($app) {
    return new UserProvider($app);
    }),
    ),
    );