PHP Classes

File: WIAdmin/WICore/lib.php

Recommend this page to a friend!
  Classes of Jules Warner   WICMS   WIAdmin/WICore/lib.php   Download  
File: WIAdmin/WICore/lib.php
Role: Example script
Content type: text/plain
Description: Example script
Class: WICMS
Database driven content management system with PDO
Author: By
Last change:
Date: 6 years ago
Size: 724 bytes
 

Contents

Class file image Download
<?php

spl_autoload_register
(function($class)
{
    require_once
'WIClass/' . $class . '.php';
});

$admin = new WIAdmin(WISession::get("user_id"));
$adminInfo = $admin->getInfo();
$adminDetails = $admin->getDetails();
$mod = new WIModules();
$page = new WIPage();
$plug = new WIPlugin();
$site = new WISite();
$img = new WIImage();
$topic = new WITopic();
$dashboard = new WIDashboard();
$adminChat = new WIAdminChat();
$Info = new WIUserInfo();
$login = new WILogin();
$register = new WIRegister();
$mailer = new WIEmail();
$validator = new WIValidator();
$maint = new WIMaintenace();
$web = new WIWebsite();


?>