Great release! First of all. An advertisement? Argh! Would also love the client click to be fixed. -.- It redirects to api.php or something when its /client to enter. And i try to use /client and it fucks up. Also would be better if staff would have a housekeeping quick click? That'd be beast!
Nice like it. :)
10/10
Cool.
Thanks for the Release, this Verry nice, and the index also.
Download link is down.
It's on my Mediafire drive. Habbo Theme.zip
I have terminated my hosting for hejula.net, so it will not work :P
This sure is nice it's one of the most used themes actually to be honest
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 261904 bytes) in C:\xampp\htdocs\app\tpl\class.html.php on line 27
here
Code:<?php namespace Revolution; if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); } class html implements iHTML { private $html; final public function get($file) { global $template, $_CONFIG; if($file != null && ctype_alnum($file)) { if(file_exists('app/tpl/skins/'.$_CONFIG['template']['style'].'/' . $file . '.php')) { ob_start(); include('app/tpl/skins/'.$_CONFIG['template']['style'].'/' . $file . '.php'); $this->html .= ob_get_contents(); ob_end_clean(); $this->setHTML(); } else { $this->get('404'); } } else { header('Location: '.$_CONFIG['hotel']['url'].'/index'); exit; } } final public function getHK($file) { global $template, $_CONFIG; if($file != null) { if(file_exists('../app/tpl/skins/'.$_CONFIG['template']['style'].'/hk/' . $file . '.php')) { ob_start(); require_once('../app/tpl/skins/'.$_CONFIG['template']['style'].'/hk/' . $file . '.php'); $this->html .= ob_get_contents(); ob_end_clean(); $this->setHTML(); } else { $this->getHK('404'); } } else { $this->getHK('dash'); } } final public function setHTML() { global $template; $template->tpl .= $this->html; unset($this->html); } } ?>