bootstrap: add uri_template fallback
[pharext/pharext.org] / app / bootstrap / uri_template.php
1 <?php
2
3 if (!function_exists("uri_template")) {
4 function uri_template($str, $arr) {
5 $tpl = new Rize\UriTemplate;
6 return $tpl->expand($str, $arr);
7 }
8 }