File: class/kernel.php

Recommend this page to a friend!
  Classes of Andoitz Jordan Marmolejo   JavaScript Query Terminal   class/kernel.php   Download  
File: class/kernel.php
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: JavaScript Query Terminal
Online console to run server commands using AJAX
Author: By
Last change: Update of class/kernel.php
Date: 2 years ago
Size: 373 bytes
 

Contents

Class file image Download
<?php /* Kernel load the essential classes */ class Kernel{ public function __construct(){ include("commands.php"); include("user.php"); $commands = new Commands(); if($commands->commandMode){ include("command.php"); $commands->loadCommand(); } else{ include("template.php"); $template = new Template(); $template->init('terminal'); } } } ?>