[Development] HydroCMS v0.1

Status
Not open for further replies.

Toms0nn

New Member
May 10, 2014
14
1
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:
direct

Index.php:
direct

(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!
 

Toms0nn

New Member
May 10, 2014
14
1
Thanks man, I'll work on it.

// Few updates for today:
- Beginning at the rules page
- 404- error is fixed.
- Housekeeping is done (Its not created by me, I downloaded it)
 

Toms0nn

New Member
May 10, 2014
14
1
Yeah, would make it better also, seeing as though this is an English-based forum :)
Currently I'm busy with the Dutch-version. Thank you both for your score. I'll make a Multi Language-system. My English isn't so good, so I need some testers. Not now, but when it's done!

Update:
- Staffpage is done
Screenshot:
direct
 

Jeffrey

Devbest Indian Tech Support
FindRetros Moderator
Feb 5, 2013
1,180
412
Hope you arent going to claim that this is from scratch. This is using RevCMS.
 
Status
Not open for further replies.

Users who are viewing this thread

Top