PHP Classes

File: install.php

Recommend this page to a friend!
  Classes of Michael J. Fuhrman   Todo List   install.php   Download  
File: install.php
Role: Example script
Content type: text/plain
Description: Installs the Todo Classes into Ladder
Class: Todo List
Manage a list of tasks of a to do list
Author: By
Last change:
Date: 13 years ago
Size: 771 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, " .
       
" nPriority Integer, " .
       
" nTask Integer, " .
       
" nTime Integer, " .
       
" bCompleted VarChar (1), " .
       
" dCompleted DateTime, " .
       
" szMemo varChar(250) " ;

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

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