Exemplo n.º 1
0
function custom_url_rewrite_inbound(&$result, $path, $path_language)
{
    global $person;
    if (preg_match('|^person/(.*)|', $path, $matches)) {
        require_once dirname(__FILE__) . "/../../modules/user/user.module";
        $person = new DbPerson($matches[1]);
        $uid = $person->getUserId();
        if ($uid) {
            $result = 'user/' . $uid . '/person';
        }
    }
}