lithium\net\http\Route::$_template

protected property

The URL template string that the route matches, i.e. '/admin/{:controller}/{:id:\d+}/{:args}'.

This string can contain any combination of...

  1. fixed elements, i.e. '/admin'
  2. plain capture elements, i.e. '/{:controller}'
  3. capture elements paired with regular expressions, i.e. '/{:id:\d+}'
  4. capture elements paired with named regular expression patterns, '/{:id:ID}'
  5. the speciall wildcard capture element '{:args}'

Source

	protected $_template = '';