Baevus
the names ethan
- Nov 4, 2012
- 565
- 47
iJaayCMS - The new revolution of uploading.
Unique Features:
- Made By iJaay. (OMG UR KIDDIN MEH)
- PHP / MySQLi Code.
- Addons / Scripts Compatible.
- A project that WONT be given up!
- A cool theme system.
- CODETANA! (Ty GUY WHO MADE IT)
You must be registered for see images attach
You must be registered for see images attach
Scripts:
- The index core - Been modified!
PHP:<?php define('iJC', true); require_once('app/engine.php'); $iJC->init('template'); $iJC->template->setView(); echo $CT->template->output(); ?>
- Class Core (Codetana modified)
PHP:
<?php
/*
* Core Class.
*
* Codetana
*
* Modified by iJaay to fit with iJaayCMS
*/
if( !defined('IN_iJC') ){ die(); }
class iJC_CT_Core {
public $mysqli, $template, $form, $permget;
/*
* Initialize a class.
*/
public function init($class, $additional = array()) {
switch( $class ) {
case "mysqli":
if( isset($additional['host']) || isset($additional['username']) || isset($additional['password']) || isset($additional['database']) ){
require_once('class.mysqli.php');//Including the MySQLi class.
$this->mysqli = new iJC_CT_MySQLi($additional['host'], $additional['username'], $additional['password'], $additional['database']);
}else{
die('MySQLi values not valid!');
}
break;
case "template":
require_once('class.template.php');//Including the template class. This includes the Vew Controller.
$this->template = new iJC_CT_Template();
break;
case "form":
require_once('class.form.php');//Including the form UI class.
$this->form = new iJC_CT_Form();
break;
case "permget":
require_once('class.permget.php');//Including the PermGET Class.
$this->permget = new iJC_CT_PermGET();
break;
}
}
}
?>
- Engine.PHP modified
PHP:
<?php
if( !defined('IN_iJC_CT') ){ die(); }
$CONF['settings']['default_view'] = 'iJC';
$CONF['system']['current_build'] = 'BETA1.0.0';
require_once('class.core.php');
$iJC = new iJC_CT_Core();
?>
- index
- /app
- /pub
- iJaay (60%) - Combining da amazing projects into 1
- Jian (LeJian) (40%) - Codetana
A fucking load (atleast 10 pages)
Will be completed after Telstra bothers fixing my internet ._.
-iJaay