This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/public/profile.php
flashwave fcc1dcdf1f r20151106
Signed-off-by: Flashwave <me@flash.moe>
2015-11-06 23:30:37 +01:00

39 lines
832 B
PHP
Executable file

<?php
/*
* Sakura User Profiles
*/
// Declare Namespace
namespace Sakura;
// Include components
require_once str_replace(basename(__DIR__), '', dirname(__FILE__)) . '_sakura/sakura.php';
// Initialise templating engine
$template = new Template();
// Change templating engine
$template->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');