Zephyrus
Wanderer
- Sep 28, 2011
- 336
- 21
PROJECT CEPHALUS
Cephalus is an simple Habbo content management system. The goal of this project is to bring back the old Habbo design but remain up to date with the current release of Habbo. Cephalus is going to be released completely open source for anyone to make modifications to, however I request that the original copyright be remained intact but feel free to add yourself to the contributors list. Throughout the development cycle there will be a live test, link(s) will be posted in the future. I have only just started working on this project.
Planned Features
These features are not guaranteed and might change before, during or after development (or release).
- Easy installation and upgrading
- Multi-Language support
- Advanced administration panel
- Support for multiple emulators
- Multi Account System
- Forums (Owners will have the ability to turn on/off).
index
# Initialize CephalusCMS
require_once(dirname(__FILE__) . '/application/CephalusCMS.php');
# Initialize Drivers
$Cephalus = new CephalusCMS;
$Cephalus->exec();
$db = new Connect($Cephalus->MySQLi['Hostname'], $Cephalus->MySQLi['Username'], $Cephalus->MySQLi['Password'], $Cephalus->MySQLi['Database']);
$core = new Core;
$users = new UserManager;
$users->GetDetails();
$registration = new Registration();
$login = new login();
# Initialize CephalusCMS
require_once(dirname(__FILE__) . '/application/CephalusCMS.php');
# Initialize Drivers
$Cephalus = new CephalusCMS;
$Cephalus->exec();
$db = new Connect($Cephalus->MySQLi['Hostname'], $Cephalus->MySQLi['Username'], $Cephalus->MySQLi['Password'], $Cephalus->MySQLi['Database']);
$core = new Core;
$users = new UserManager;
$users->GetDetails();
$registration = new Registration();
$login = new login();
Last edited: