Dear devbest members,
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
New updates
Cosmic has alot of updates already but it is too much to write. The best update so far is that you are now able to manage the catalogue from the housekeeping. With a simple, drag & drop system you can order the catalogue in a visual way.
Cosmic is also now compitable with php 8.0.1. and version 3 of cosmic is also under construction with a new layout and framework. Also i'm working on Circinus, frontend project builded with typescript +vue and mobx, which is builded for Ares backend. Follow the thread here:
Get Cosmic here
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 for see links
in the past.But I chose to user the vendor
You must be registered for 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);
}
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
- 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'
]);
}
- 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 for see links)
You must be registered for 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
- Catalog manage
New updates
Cosmic has alot of updates already but it is too much to write. The best update so far is that you are now able to manage the catalogue from the housekeeping. With a simple, drag & drop system you can order the catalogue in a visual way.
You must be registered for see links
You must be registered for see links
Cosmic is also now compitable with php 8.0.1. and version 3 of cosmic is also under construction with a new layout and framework. Also i'm working on Circinus, frontend project builded with typescript +vue and mobx, which is builded for Ares backend. Follow the thread here:
You must be registered for see links
Get Cosmic here
You must be registered for see links
Attachments
Last edited: