3 cx_require('lib', 'site.php');
5 function cx_url($path) {
9 function cx_url_admin($path) {
10 return cx_url('/cx' . $path);
13 function cx_url_site($path) {
14 return cx_site_url() . cx_url($path);
17 function cx_url_page($number, $delta = 0) {
18 $next_number = $number + $delta;
19 if ($next_number <= 0) {
20 return cx_url_site('/');
22 return cx_url_site('/page/' . $next_number );