HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
This will be a very "big" housekeeping for RevCMS! :D It will be compatible to Azure DB only, because Phoenix DB is different in most cases.
Features:
- modern, flat, responsive
- see screenshot -> navigation for more :D (more features will be coded later ^^)
Progress:
- working on the php
-- Edit Users
-- Write News
-- Edit News
-- Delete Users
-- Command Logs
-- Edit Shop Categories
- working on the layout
Newest Screenshots:
Reworked layout (better css&responsive) - mobile view (< 721px):
http://img.hubb.ml/habbo/screenshots/hubbase_06.png
Reworked layout (better css&responsive) - normal view (>720px):
http://img.hubb.ml/habbo/screenshots/hubbase_05.png
Old Screenshots:
Re: HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
Good luck with your project! :]
Re: HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
Good luck with the project mate hope to see it finished!
Re: HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
Good luck, hope to see it finished.
As there are no 'good' azure compatible Housekeeping out there.
Re: HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
Small new update, it's working now ({url}/ase) and I changed the navigation a little bit :)
What could be in the big blue box in the middle and what could be in the other box?
http://img.hubb.ml/habbo/screenshots/hubbase_02.png
Re: HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
Good luck!
could you also release the template (no php) when your gonna release the HK itself?
Re: HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
Quote:
Originally Posted by
SubDababa
Good luck!
could you also release the template (no php) when your gonna release the HK itself?
Don't know but it's easy to take the css and copy every (non php) things from the php files :D
Re: HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
Quote:
Originally Posted by
C0R3G4M3R
Don't know but it's easy to take the css and copy every (non php) things from the php files :D
By that statement it sounds like you're mixing PHP and HTML...
Re: HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
Quote:
Originally Posted by
ησвяαιη
By that statement it sounds like you're mixing PHP and HTML...
Sorry for my bad english, look at my siganture :'D
I meant that you can take the css files (style/main.css) and from (for example) dash.php you take the html out into an .html file (where you can't use php). Hope that you understand what I mean :/
Or easier: I think I release both (in 1 thread) the HK and the layout only :'D
Re: HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
Quote:
Originally Posted by
C0R3G4M3R
Sorry for my bad english, look at my siganture :'D
I meant that you can take the css files (style/main.css) and from (for example) dash.php you take the html out into an .html file (where you can't use php). Hope that you understand what I mean :/
Or easier: I think I release both (in 1 thread) the HK and the layout only :'D
The real question is, are you doing this? (as an example):
Code:
<!DOCTYPE html>
<html>
<body>
<?php
echo "My first PHP script!";
?>
</body>
</html>
Taken from: PHP 5 Tutorial
Re: HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
Quote:
Originally Posted by
ησвяαιη
The real question is, are you doing this? (as an example):
Code:
<!DOCTYPE html>
<html>
<body>
<?php
echo "My first PHP script!";
?>
</body>
</html>
Taken from:
PHP 5 Tutorial
Yep, because it's for RevCMS and I'm quite a beginner in PHP ^^
Snippet of dash.php (not ready):
PHP Code:
<?php
include('inc/header.php');
if($_SESSION['user']['rank'] > 5){
?>
<div class="content">
<!-- Site Header -->
<div class="header">
{hotelname} Hotel Housekeeping: Dashboard
</div>
<!-- Site Header End -->
<!-- Site Stats -->
<div class="col">
<div class="col-3">
<div class="col-stat r">
<table class="table-stat">
<tr>
<th>Server status</th>
<th>
<?php
if("{status}" == 1){
echo("online");
} else {
echo("offline");
}
?>
</th>
</tr>
</table>
</div>
</div>
and
PHP Code:
</body>
</html>
<?php
} else {
die('You are not allowed to be here, sorry.');
}
?>
Re: HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
This has potential mate, and one of the bigger flaws would be the template, but you're doing quite good on the backend for being a newbie. Don't get too carried away from features (such as the staff chat, etc) - but work primarily on the basic features.
Re: HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
Quote:
Originally Posted by
chrispettyjohn
This has potential mate, and one of the bigger flaws would be the template, but you're doing quite good on the backend for being a newbie. Don't get too carried away from features (such as the staff chat, etc) - but work primarily on the basic features.
Staff chat will be in v2 or so, because I don't know how to do it for now. First everything important (and clean code) and then other things :)
Re: HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
Quote:
Originally Posted by
C0R3G4M3R
Staff chat will be in v2 or so, because I don't know how to do it for now. First everything important (and clean code) and then other things :)
Well lookup an ajax chat room type deal, or just make a private message system for the staff users. I honestly don't think it was too big of a feature, and only use the PM system in mine for customer support
Re: HubbASE (for RevCMS and compatible to Azure only) [Housekeeping]
Quote:
Originally Posted by
chrispettyjohn
Well lookup an ajax chat room type deal, or just make a private message system for the staff users. I honestly don't think it was too big of a feature, and only use the PM system in mine for customer support
Features in V1 will be:
- modern, flat, responsive layout
- edit, write and delete news [to use with a better cms_news.sql, from phoenix database, included in download]
- edit catalogue categories and items [only with Azure database]
- edit users
- ban users
- edit ranks [ranks.sql will be included in download]
- staff command logs
- more in later versions :)