setTemplate($templateName); // Get the user's context $profile = new User(isset($_GET['u']) ? $_GET['u'] : 0); // Views array $views = [ 'index', 'friends', 'threads', 'posts', 'comments', ]; // Assign the object to a renderData variable $renderData['profile'] = $profile; $renderData['profileView'] = isset($_GET['view']) && in_array($_GET['view'], $views) ? $_GET['view'] : $views[0]; // Set parse variables $template->setVariables($renderData); // Print page contents echo $template->render('main/profile.tpl');