- Joined
- Mar 9, 2007
- Messages
- 59
- Reaction score
- 6
Dear ragezoners,
Introduction
In February this year I started developping on a Habbo CMS because most of the currently released CMS are deprecated and extremely bad programmed.
The project has stopped for a while because I started working for another retro called LeetHotel. Due to circumstances I quit Leet and decided to myself to continue with this project
Leet Hotel also uses my framework at this moment but i changed the layout a bit to keep the originality. I think this is a good start to continue the project, apart from the fact that we all know that retro's is already dying..
Before we start I want to say, thanks Metus for helping with this project and I wish you the best with you and your hotel.
AsteroidCMS
This framework has a total of 400 commit's and has undergone many changes and now we have reached a point where everyone can use it.
The most important part of the framework is of course the routing, I created my own in version 1 what I also announced
But I chose to user the vendor
We use an MVC structure. Do you have no idea what this means exactly? On Google you can find a lot of information.
AsteroidCMS also uses middlewares for example a authentication, caching class and validation class.
You can add middleware very easy for example:
Permission system has also been built with individual rights that you can assign to a specific role. Roles can also be created for your emulator and this is easy to manage in our housekeeping.
There is too much to mention what AsteroidCMS offers. You can find all of this later in a documentation.
Vendors
Javascript
Instead of controlling a view in your controller, we have javascript for loading all the post/get requests.
This way it is possible to go in and out of the hotel without having page refresh.
Interfaces
Live preview
Join our discord
You can test the beta here
Friendly Regards,
Raizer.
Introduction
In February this year I started developping on a Habbo CMS because most of the currently released CMS are deprecated and extremely bad programmed.
The project has stopped for a while because I started working for another retro called LeetHotel. Due to circumstances I quit Leet and decided to myself to continue with this project
Leet Hotel also uses my framework at this moment but i changed the layout a bit to keep the originality. I think this is a good start to continue the project, apart from the fact that we all know that retro's is already dying..
Before we start I want to say, thanks Metus for helping with this project and I wish you the best with you and your hotel.
AsteroidCMS
This framework has a total of 400 commit's and has undergone many changes and now we have reached a point where everyone can use it.
The most important part of the framework is of course the routing, I created my own in version 1 what I also announced
You must be registered to see links
in the past. But I chose to user the vendor
You must be registered to see links
rounting because it is much more powerful than mine.We use an MVC structure. Do you have no idea what this means exactly? On Google you can find a lot of information.
AsteroidCMS also uses middlewares for example a authentication, caching class and validation class.
You can add middleware very easy for example:
Code:
class Routes extends Router
{
public static function init()
{
Router::PartialGroup('/', function () {
Router::setDefaultNamespace('\App\Controllers');
Router::get('/', 'Home\Index@index')->setName('index.home')->addMiddleware(CacheMiddleware::class);
Router::get('/home', 'Home\Index@index')->addMiddleware(CacheMiddleware::class);
Router::get('/lost', 'Home\Lost@index')->setName('lost');
})->addMiddleware(AuthMiddleware::class);
}
There is too much to mention what AsteroidCMS offers. You can find all of this later in a documentation.
Vendors
- Composer project
- Simple Validation class
Code:
public function request()
{
$validate = request()->validator->validate([
'username' => 'required|min:1|max:30',
'password' => 'required|min:1|max:100',
'pincode' => 'max:6'
]);
if (!$validate->isSuccess()) {
exit;
}
}
- Pecee Simple routing
- Locale systeem (meerdere languages)
- Twig template parser
- Helpers
- Page caching
- Google 2FA authentication
- QueryBuilder
Code:
public static function getAccessLogs($player_id, $limit = 100)
{
return QueryBuilder::table('player_access')->where('player_id', $player_id)->limit($limit)->get();
}
Javascript
Instead of controlling a view in your controller, we have javascript for loading all the post/get requests.
This way it is possible to go in and out of the hotel without having page refresh.
Interfaces
- Hotelmanager
- Forms/Links handler
- Post/Get requests
- Customforms
- Dialogmanager
- Notificationmanager
- Permissions (Create: Roles, Add: Permissions)
- Remote Control (View userdata, ban, alert & reset control) (
You must be registered to see links)
You must be registered to see links - Room control + ban control
- VPN control (block users based at ASN)
- Wordfilter
- Chatlogs
- Banlogs
- Stafflogs
- Help tickets
- FAQ manage
- News manage
- Shop manage
- Catalog manage (edit your arcturus catalog).
- Value manage
Live preview
You must be registered to see links
(Soon i add test account for housekeeping).Join our discord
You must be registered to see links
to get updated!You can test the beta here
You must be registered to see links
Friendly Regards,
Raizer.
Last edited: