project to the project. * * The url to match a project is in the format * /p/(\w+)/whatever. This means that it will not try to match on * /login/ or /logout/. * * @param Pluf_HTTP_Request The request * @return bool false or redirect. */ function process_request(&$request) { $match = array(); if (preg_match('#^/p/(\w+)/#', $request->query, $match)) { $request->project = IDF_Project::getOr404($match[1]); } return false; } } function IDF_Middleware_ContextPreProcessor($request) { $c = array(); if (isset($request->project)) { $c['project'] = $request->project; $c['isOwner'] = $request->user->hasPerm('IDF.project-owner', $request->project); $c['isMember'] = $request->user->hasPerm('IDF.project-member', $request->project); } return $c; }