Hi y'all,
The last few days I've been working on a nice Habbo Content Management System. This is a development thread, not a release!
You got screenshots?
Yeah, actually I do.
Me.php:
Index.php:
(The reason why the logo calles ''Dingo'' is because my hotel name is ''Dingo Hotel''
Register.php:
Not special, it's exactly like the index, but with more register-related questions.
Snippet of my class.js:
Wish me luck!
The last few days I've been working on a nice Habbo Content Management System. This is a development thread, not a release!
You got screenshots?
Yeah, actually I do.
Me.php:
Index.php:
(The reason why the logo calles ''Dingo'' is because my hotel name is ''Dingo Hotel''
Register.php:
Not special, it's exactly like the index, but with more register-related questions.
Snippet of my class.js:
PHP:
<?php
namespace Revolution;
if(!defined('IN_INDEX')) { die('Sorry, you cannot access this file.'); }
class js implements iJS
{
private $js;
final public function get()
{
global $_CONFIG;
foreach (glob("app/tpl/skins/".$_CONFIG['template']['style']."/js/*.js") as $filename)
{
$this->js = '<script src="'.$filename.'" type="text/javascript"></script>';
$this->setJS();
}
}
final public function getHK()
{
global $_CONFIG;
foreach (glob("app/tpl/skins/".$_CONFIG['template']['style']."/hk/js/*.js") as $filename)
{
$this->js = '<script src="'.$filename.'" type="text/javascript"></script>';
$this->setJS();
}
}
final public function setJS()
{
global $template;
$template->tpl .= $this->js;
unset($this->js);
}
}
?>
Wish me luck!