setSessionResolver() public method

Set the session resolver for the generator.
public setSessionResolver ( callable $sessionResolver )
$sessionResolver callable
 /**
  * Register the URL generator service.
  *
  * @return void
  */
 protected function registerUrlGenerator()
 {
     $this->app['url'] = $this->app->share(function ($app) {
         $routes = $app['router']->getRoutes();
         // The URL generator needs the route collection that exists on the router.
         // Keep in mind this is an object, so we're passing by references here
         // and all the registered routes will be available to the generator.
         $app->instance('routes', $routes);
         $url = new UrlGenerator($routes, $app->rebinding('request', $this->requestRebinder()));
         $url->setSessionResolver(function () {
             return $this->app['session'];
         });
         // If the route collection is "rebound", for example, when the routes stay
         // cached for the application, we will need to rebind the routes on the
         // URL generator instance so it has the latest version of the routes.
         $app->rebinding('routes', function ($app, $routes) {
             $app['url']->setRoutes($routes);
         });
         return $url;
     });
 }
Beispiel #2
0
 /**
  * Set the session resolver for the generator.
  *
  * @param callable $sessionResolver
  * @return $this 
  * @static 
  */
 public static function setSessionResolver($sessionResolver)
 {
     return \Illuminate\Routing\UrlGenerator::setSessionResolver($sessionResolver);
 }