[Development] HybridCMS- Secure, fast, lightweight. [R63+/OOP/PHP]

Status
Not open for further replies.
Jan 17, 2012
649
166
I think this CMS is going to be better, since has joined. Good luck.

Need another developer?
 

DaLightz

See ya'll in the afterlife.
May 19, 2012
1,136
262
I think this CMS is going to be better, since has joined. Good luck.
Well I'll be honest. He really is helping out alot. He's already finished part of the unfinished template system, and the whole installer. Plus the motivation. :)

Anyhow, finished the register for that new Habbo theme.
c33751aa89ff40d4a3aefd6.png
 

GarettM

Posting Freak
Aug 5, 2010
833
136
That's right bitches ;) also started on housekeeping today no new snipits yet to see are devolvement go into are github repo
 

GarettM

Posting Freak
Aug 5, 2010
833
136
sorry for the lack of updates i have been bizzy XD so has cookie Monster :3
CMS is 75% done, right know were cleaning up code .. :3

I cant post screenies or snippits with out cookies permission it is his CMS not mine
 

DaLightz

See ya'll in the afterlife.
May 19, 2012
1,136
262
Are you going to update your Github repo soon?
Yes.
-

Focusing back on the cms. I've had enough Minecraft for a few weeks. 
HybridCMS 1.0.5b
Hello all. Time to update everyone on HybridCMS. Hybrid's reached it's official Beta now, 1.0.5 to be exact. :p

What's done-
  • AdminCP base.
  • Template system.
  • Database system.
  • Habbo template started.
  • Configuration.
  • Installer started.
  • Some other stuff..
HybridCMS 1.0.0d [Developer preview]
Developer preview is here! You may edit this build of Hybrid in anyway you need. You may release this as yours, only if you've edited it. Otherwise, credits would still go to me. Download below.​
-----------​

Keep in mind that the cms has been totally re-writen. So yeah, don't expect any heavy Habbo features yet.

Credits [updated]-
  • CookieMonsta- Lead dev.
  • garretjoey- Dev.
  • Chokedathoe- Css help.
  • Hejulla- RevCMS habbo skin.

Current available downloads-
HybridCMS Build:
HybridCMS Build:
 

GarettM

Posting Freak
Aug 5, 2010
833
136
Hello Hybrid Thread Viewers !!
HybridProject (Unofficial Build 0.1.7 )​
Features added:
  1. Small API System,
  2. Configuration inside a secure class ( Installer Creates This File )
  3. Custom Template System
  4. New Habbo Layout?! ( fully customized for clients choice )
  5. Everything is Secure
Information:
This Build is not supported by The HybridProject Team, This Build Focus on Security and Having a API system for Plugins and Theme Support.
Sadly this Build is not ready for release intell Friday ( Feb 1ST )
Snipits:
API System 10% done
API system works by including a file in the /plugin/ [plugin name] .php
and using the $[plugin name] anonymous function. This API system isnt very secure but will work for small Things !! like cron jobs and more
PHP:
class API {
    public function run($function, $data) {
        if(file_exists( _api_ . "$function.php" )) {
            include_once( _api_ . "$function.php" );
            $apifunction = "$function";
            if(defined('API_ACCESS')) {
                return $$apifunction($data);
            } else {
                echo $function, " API system was denied access";
            }
        } else {
            echo $function, " API Doesnt exists!!";
        }
    }
}

configuration file
PHP:
<?php
############################[]
##
## HybridCMS (0.1.7)
##
############################[]
 
class config {
    protected $data = array(), $information = array(
        'build'    => '0.1.7',
        'author'    => 'GarettMcCarty',
        'copyright' => 'Copyright &copy; 2013');
 
    public function __construct() {
        /** Mysql Config **/
        // Mysql Host e.g. Localhost
        $this->set('sql.host', 'localhost');
        // Mysql User e.g. Root
        $this->set('sql.user', 'root');
        // Mysql User Password
        $this->set('sql.pass', 'password1');
        // Mysql Database For CMS
        $this->set('sql.data', 'habbo?');
    }
 
    protected function set($ref, $value) {
        if(isset($this->data[$ref][1])) {
            printf("$ref already exists"); exit;
        }
      $this->data[$ref] = "$value"; 
    }
    public function retrieve($ref) {
        if(!isset($this->data[$ref][1])) {
            printf("$ref Doesnt exists"); exit;
        }
      return $this->data[$ref]; 
    }
    public function info($str) {
        if(isset($this->information[$str][1])) {
            return $this->information[$str];
        }
      return '*_*'; 
    }
}
?>
 

DaLightz

See ya'll in the afterlife.
May 19, 2012
1,136
262
Hello Hybrid Thread Viewers !!
HybridProject (Unofficial Build 0.1.7 )​
Features added:
  1. Small API System,
  2. Configuration inside a secure class ( Installer Creates This File )
  3. Custom Template System
  4. New Habbo Layout?! ( fully customized for clients choice )
  5. Everything is Secure
Information:

This Build is not supported by The HybridProject Team, This Build Focus on Security and Having a API system for Plugins and Theme Support.
Sadly this Build is not ready for release intell Friday ( Feb 1ST )
Snipits:
API System 10% done
API system works by including a file in the /plugin/ [plugin name] .php
and using the $[plugin name] anonymous function. This API system isnt very secure but will work for small Things !! like cron jobs and more
PHP:
class API {
    public function run($function, $data) {
        if(file_exists( _api_ . "$function.php" )) {
            include_once( _api_ . "$function.php" );
            $apifunction = "$function";
            if(defined('API_ACCESS')) {
                return $$apifunction($data);
            } else {
                echo $function, " API system was denied access";
            }
        } else {
            echo $function, " API Doesnt exists!!";
        }
    }
}
I'll merge the code for Build 1.2.0
 

lepos

thinking about you. yes you
Dec 11, 2011
2,022
685
Thread closed due to lack of recent update - Please contact me for your thread to be re-opened.
 
Status
Not open for further replies.

Users who are viewing this thread

Top