]> git.bts.cx Git - cx.git/blob - cx/lib/url.php
Basic draft support
[cx.git] / cx / lib / url.php
1 <?php
2
3 cx_require('lib', 'site.php');
4
5 function cx_url($path) {
6 return $path;
7 }
8
9 function cx_url_admin($path) {
10 return cx_url('/cx' . $path);
11 }
12
13 function cx_url_site($path) {
14 return cx_site_url() . cx_url($path);
15 }