Global vriables in NukeEvent:
=============================

$neConfig:
    This is the array with the Configuration of NukeEvent found in
    config.php. $neConfig is an associative array. More infomationn
    aboute the contents of this array can be found in the config.inc

$neDb:
    this is the Pear DB Object with Database Hander. User $neDb for 
    every Datebase Connection you make. For more information of handling
    a Database with PEAR DB look at 
    http://pear.php.net/manual/en/package.database.php

$neModuleName:
    This is the Module that is currently loaded by the User. To load
    a Module simply say index.php?mod=the_module_you want.
    This is vary handy for building redirect, links, or forms.
    For security reasons, modulenames can't have a '/' or '.' in it.

$neOp:
    This is the operation a module should execute.
    It is the paramate op= in the URIs.
    Somtimes this Variable is empty (no op= in the URI).

$neSession:
    The $neSession handles the Session of the User, with all relevant
    Data. The most used functions are: 
      * $neSession->isAdmin($neModuleName)
        returns true if the User have Adminrights for this Module
      
      * $neSession->isLoggedIn()
        returns true if this is a Session of registred and logged in User.

$neTheme:
    This is a long story that comes soon....