Looks good =]
Screenshot dump:
More updates to come?![]()
Wow - Nice, I ♥ everything you have done so far - Although you could of done the rule - New CMS, New Theme? - Not hard to pay someone to design a nice CMS ? - Then code your tidy CSS - I do like what you've done though - More snippets?
It is shorthand code, it basically does this:
if ($page == 'login' || $page == 'register')
{
if (DH_LOGGED)
{
header('Location: '.$config['path'].'?p=me');
exit;
}
}
else
{
if (!DH_LOGGED)
{
header('Location: '.$config['path'].'?p=login');
exit;
}
}
in the one line or similar
Nice design but crap code, what a shame. Otherwise it would be a half decent CMS.
This looks awesome, hope this will get released....
Sent from my iPhone 30 using Tapatalk
pretty nice. goodluck
Source dump:
Notes:Code:<!DOCTYPE html> <html> <head> <title>%NME%: Forums</title> <link rel="shortcut icon" href="%WWW%resources/img/favicon.ico" type="image/vnd.microsoft.icon" /> <link rel="stylesheet" href="%WWW%resources/css/style.css" type="text/css" /> <link rel="stylesheet" href="%WWW%resources/css/forum.css" type="text/css" /> <script type="text/javascript" src="%WWW%resources/js/jquery.js"></script> <script type="text/javascript" src="%WWW%resources/js/script.js"></script> <meta name="description" content="%NME% is a Habbo Hotel retro that is FREE! Meet and make friends, play games, chat with others, create your avatar, design rooms and more..."/> <meta name="keywords" content="%NME% hotel, virtual, world, social network, free, community, avatar, chat, online, teen, roleplaying, join, social, groups, forums, safe, play, games, online, friends, teens, rares, rare furni, collecting, create, collect, connect, furni, furniture, pets, room design, sharing, expression, badges, hangout, music, celebrity, celebrity visits, celebrities, mmo, mmorpg, massively multiplayer"/> </head> <body> <div id="container-header"> <div class="container"> <a href="%WWW%?p=me" target="_self" id="logo"></a> <div id="count">%UOC% online<i></i></div> <a href="%WWW%?p=client" id="enter" onclick="Popup(this); return false;">Enter %NME%<i></i></a> <ul id="navi-container"> <li class="navi"><a href="%WWW%?p=me" target="_self">%username%</a></li> <li class="navi selected">Community</li> <li class="navi"><a href="%WWW%?p=credits" target="_self">Credits</a></li> <li class="navi logout"><a href="%WWW%?p=logout" target="_self">Logout</a></li> </ul> </div> </div> <div class="container clear"> <ul id="subnavi-container"> <li class="subnavi"><a href="%WWW%?p=community" target="_self">Community</a></li> <li class="subnavi"><a href="%WWW%?p=staff" target="_self">Staff</a></li> <li class="subnavi"><b>Forums</b></li> <li class="subnavi last"><a href="%WWW%?p=tags" target="_self">Tags</a></li> </ul> <div id="contents-container"> <div class="contents XXXL"> %navigation% <div class="content"> %forum% </div> <div class="loader"></div> <div id="backgroundPopup"></div> </div> </div> </div> <div id="container-footer"> <p id="footer"> <a href="%WWW%?p=me" target="_self">Homepage</a> | <a href="#" target="_self">Terms of Service</a> | <a href="#" target="_self">Privacy Policy</a> </p> </div> </body> </html>
This is the HTML template what shows the forums, as you can see it's rather small and tidy and I think impressive on how much content the forums offers for such a small template. I also have to admit that the forums needs a clean up on its PHP source code, so I don't want to show you guys that just yet because I want to make it as tidy and small as the template. I apologize for slow development recently.
Dude this is amazing.
Some of this is really nice, but then some of it is painfully unoriginal. I'm tired of seeing Habbo theme. The only thing I see different from any other CMS or skin, design-wise, is the gradients on the tabs. This style has been used in nearly every CMS design since shockwave versions. I hope you will diverge away from it and create something a bit more original.
Good luck nonetheless.
Last edited by Riley H; 11-04-13 at 12:22 AM.
You should change this:
To this:PHP Code:if (DH_LOGGED)
{
if ($page == 'login' || $page == 'register')
{
header('Location: '.$config['path'].'?p=me');
exit;
}
}
else
{
if ($page == 'logout' || $page == 'client' || $page == 'me' || $page == 'home' || $page == 'profile' || $page == 'community' || $page == 'forums' || $page == 'staff' || $page == 'tags' || $page == 'credits' || $page == 'pixels')
{
header('Location: '.$config['path'].'?p=login');
exit;
}
}
Nothing major but easier lol, then adding 100's and 100's of pages.PHP Code:if (DH_LOGGED)
{
if ($page == 'login' || $page == 'register')
{
header('Location: '.$config['path'].'?p=me');
exit;
}
}
else
{
if ($page != 'login' || $page != 'register')
{
header('Location: '.$config['path'].'?p=login');
exit;
}
}
Attempted to improve the source inside forums, but the only minor thing I could of done was use a function to fetch each $_GET ID and change its ID to its actual name inside a function which would of used one or two less fields inside several queries... Anyway I've added pagination into the forum posts so there is a limit (16) for each thread.
I ain't really motivated to work on this as I did from the start, but it's being done, slowly but surely! I'll probably put up a live demo for you guys, if you want? Let me know!
You should be motivated, once you've finished it you'll be like "oh thank god, finished, im so proud and cool".
Good luck.
I'm going to be releasing this soon, I just want to get some bits and bobs stable before a DEV-STABLE build can be released, this means that the project will still be in development, but it's stable enough for a hotel to run on it, however it will only be minimal to what I've shown already! This gives people to work on the development and hopefully they will release their own stable version that I can look back from so we can all work together as a community. (:
Looks great! Liked :)
Looks awesome hope you releas it soon :)