Merge pull request #854 from jasonlewis/feature/pattern-filters

Allow filter patterns to supply a name and callback as an easier alternative.
This commit is contained in:
Taylor Otwell
2012-07-06 17:57:46 -07:00
2 changed files with 18 additions and 0 deletions

View File

@@ -213,6 +213,15 @@ class Route {
{
if (Str::is($pattern, $this->uri))
{
// If the filter provided is an array then we need to register
// the filter before we can assign it to the route.
if (is_array($filter))
{
list($filter, $callback) = array_values($filter);
Filter::register($filter, $callback);
}
$filters[] = $filter;
}
}