💻Core Functions

loadConfig - Loading Config's

$this->loadConfig()
Returns any thing in system/User/Config.php
Such as $this->loadConfig()->base_url from public $base_url = "http://localhost:8000";

library($library , $parse0 , $parse1) - Load System Library

$this->library("library");

securityChecks - Checks LibSecurity

$this->securityChecks();

initApp - Inits Application (used in index.php only)

$this->initApp();

showError($message) - Shows a error message

$this->showError("Nice Job!");

get_client_ip - Gets Client IP Address

$this->get_client_ip();

Last updated