unflat betrays the law

This commit is contained in:
flash 2015-06-22 19:44:14 +02:00
parent c8c1c155c6
commit 8d013a7769
5 changed files with 61 additions and 1 deletions

View file

@ -5,6 +5,8 @@
<div>General</div> <div>General</div>
<a href="/settings/">Home</a> <a href="/settings/">Home</a>
<a href="/settings/profile">Edit Profile</a> <a href="/settings/profile">Edit Profile</a>
<a href="/settings/friends">Friends</a>
<a href="/settings/groups">Groups</a>
<div>Messages</div> <div>Messages</div>
<a href="/messages/inbox">Inbox</a> <a href="/messages/inbox">Inbox</a>
<a href="/messages/sent">Sent</a> <a href="/messages/sent">Sent</a>

View file

@ -11,7 +11,23 @@
<div>Your avatar which is displayed all over the site and on your profile.</div> <div>Your avatar which is displayed all over the site and on your profile.</div>
<div>Maximum image size is 500x500, minimum image size is 20x20, maximum file size is 10 MB.</div> <div>Maximum image size is 500x500, minimum image size is 20x20, maximum file size is 10 MB.</div>
</div> </div>
<form enctype="multipart/form-data" method="post" action="{{ setting.action }}">
<input type="hidden" name="sessid" value="{{ php.session }}" />
<input type="hidden" name="timestamp" value="{{ php.time }}" />
<input type="hidden" name="mode" value="avatar" />
<input type="hidden" name="MAX_FILE_SIZE" value="10000000" />
<div style="text-align: center;">
<div>
<img src="/a/{{ user.data.id }}" alt="Your Avatar" class="default-avatar-setting" />
</div>
<div>
<input type="file" name="avatar" />
</div>
<div>
<input type="submit" value="Submit" name="submit" class="inputStyling" />
</div>
</div>
</form>
</div> </div>
<div class="clear"></div> <div class="clear"></div>
</div> </div>

View file

@ -0,0 +1,17 @@
{% include 'global/header.tpl' %}
<div class="content settings messages">
<div class="content-right content-column">
{% include 'elements/settingsNav.tpl' %}
</div>
<div class="content-left content-column">
<div class="head">
{{ page.title }}
</div>
<div class="settings-explanation">
<div>Manage your friends.</div>
</div>
</div>
<div class="clear"></div>
</div>
{% include 'global/footer.tpl' %}

View file

@ -0,0 +1,18 @@
{% include 'global/header.tpl' %}
<div class="content settings messages">
<div class="content-right content-column">
{% include 'elements/settingsNav.tpl' %}
</div>
<div class="content-left content-column">
<div class="head">
{{ page.title }}
</div>
<div class="settings-explanation">
<div>The background that is displayed on your profile.</div>
<div>Maximum image size is 2560x1440, minimum image size is 20x20, maximum file size is 10 MB.</div>
</div>
</div>
<div class="clear"></div>
</div>
{% include 'global/footer.tpl' %}

View file

@ -195,6 +195,8 @@ if(Users::checkLogin()) {
$pages = [ $pages = [
'home' => ['General', 'Home'], 'home' => ['General', 'Home'],
'profile' => ['General', 'Edit Profile'], 'profile' => ['General', 'Edit Profile'],
'friends' => ['General', 'Friends'],
'groups' => ['General', 'Groups'],
'notifications' => ['Notifications', 'History'], 'notifications' => ['Notifications', 'History'],
'avatar' => ['Aesthetics', 'Avatar'], 'avatar' => ['Aesthetics', 'Avatar'],
'background' => ['Aesthetics', 'Background'], 'background' => ['Aesthetics', 'Background'],
@ -221,6 +223,11 @@ if(Users::checkLogin()) {
// Section specific // Section specific
switch($currentPage) { switch($currentPage) {
// Notification history
case 'friends':
$renderData['friends'] = Users::getFriends();
break;
// Notification history // Notification history
case 'notifications': case 'notifications':
$renderData['notifs'] = array_reverse(Users::getNotifications(null, 0, false, true)); $renderData['notifs'] = array_reverse(Users::getNotifications(null, 0, false, true));