PHP Classes

File: Install_Functions.php

Recommend this page to a friend!
  Classes of Michael J. Fuhrman   Ladder PHP   Install_Functions.php   Download  
File: Install_Functions.php
Role: Auxiliary script
Content type: text/plain
Description: This provides a common set of functions to facilitate installing classes into Ladder.
Class: Ladder PHP
Manage objects stored MySQL database dynamically
Author: By
Last change:
Date: 14 years ago
Size: 568 bytes
 

Contents

Class file image Download
<?
/* =======================================
    Copyright 1998, 2000, 2003, 2007, 2009 - E Net Arch
        www.ENetArch.net - 248-686-1407
        ENetArch on AIM, Yahoo, and Skype

    This program is distributed under the terms of the GNU
    General Public License (or the Lesser GPL).
    ======================================= */

Function CreateClass ($thsName, $nBaseType, $ofClass, $bAcceptsAll, $szStr="")
{
    Global
$gblLadder;

   
printf ("Adding Class %s<BR>", $thsName);

   
$gblLadder->CreateClass ($thsName, $nBaseType, $ofClass, $bAcceptsAll, $szStr);
}

?>