Skip to content

Instantly share code, notes, and snippets.

@matej21
Created August 27, 2014 20:00
Show Gist options
  • Save matej21/614f493de37c69c77189 to your computer and use it in GitHub Desktop.
Save matej21/614f493de37c69c77189 to your computer and use it in GitHub Desktop.
<?php
$route = new Route("...", array(
"presenter" => "Foo",
"action" => "default",
NULL => array(
Route::FILTER_IN => function(array $params) {
//upravim parametry jak potrebuju, pripadne muzu vratit NULL pro zamitnuti routy
return $params; //pokud vse ok
},
Route::FILTER_OUT => function(array $params) {
//stejne tak upravim a vratim null nebo $params
}
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment