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 26572dbd71 r20150913 and r20150915
Signed-off-by: Flashwave <me@flash.moe>
2015-09-14 22:51:23 +02:00

20 lines
440 B
PHP

<?php
/*
* Sakura User Profiles
*/
// Declare Namespace
namespace Sakura;
// Include components
require_once str_replace(basename(__DIR__), '', dirname(__FILE__)) . '_sakura/sakura.php';
// Get the user's context
$profile = new User(isset($_GET['u']) ? $_GET['u'] : 0);
// Assign the object to a renderData variable
$renderData['profile'] = $profile;
// Print page contents
print Templates::render('profile/index.tpl', $renderData);