PHP Classes

File: install.php

Recommend this page to a friend!
  Classes of Michael J. Fuhrman   Appointment Calendar   install.php   Download  
File: install.php
Role: Application script
Content type: text/plain
Description: Installs the Appointment Calendar Classes into Ladder's Class Tree
Class: Appointment Calendar
Manage scheduled appointments
Author: By
Last change:
Date: 14 years ago
Size: 712 bytes
 

Contents

Class file image Download
<?
/* =======================================
    Copyright 1998 - 2010 - E Net Arch
    This program is distributed under the terms of the GNU
    General Public License (or the Lesser GPL).
    ======================================= */

function dirPath() { return ("../"); }

Include_Once (
dirPath() . "Shared/Install_Functions.inc");
Include_Once (
dirPath() . "Shared/_app.inc");

Function
php_Main ()
{
  
$szStr =
     
" dTarget DateTime, " .
     
" nTime Integer, " .
     
" nLength Integer, " .
     
" szMemo varChar(250) " ;

  
CreateClass ("Common_Appointment", ldrGlobals::cisItem(), 0 , true, $szStr);

  
CreateClass ("Common_Appointments", ldrGlobals::cisFolder(), 0 , true);
}
?>