<?php /* * Global functions / operations and access to contextual or session-based information */ abstract class Framework { /* * Get the absolute path on this server for the root of this app */ function ar() { /* TODO */ } /* * Redirect to the given URL and die */ function redirectTo($url) { http_redirect($url); exit; } } ?>