HosipLan

Untitled

Apr 26th, 2011
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. $router[] = new Route('/<module>/<presenter>/action', array(
  2.     'module' => array(
  3.         Route::FILTER_IN => function ($module) {
  4.             return (Strings::startsWith($module, 'Admin') ? $module : NULL);
  5.         }
  6.     )
  7. ));
Advertisement
Add Comment
Please, Sign In to add comment