<?
 
/*    =======================================
 
    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/_app.inc");
 
 
Function php_Main ()
 
{
 
   $aryRoots = gblLadder()->getRoots();
 
   $fldrRoot= gblLadder()->getItem ($aryRoots [1]);
 
 
   $clsCommon_TaskTypes = gblLadder()->getClass ("Common_TaskTypes")->ID();
 
 
   $fldrAppoinments = $fldrRoot->Create_Folder        ("TaskTypes", "TaskTypes are stored here", $clsCommon_TaskTypes);
 
 
   $fldrAppoinments ->Store();
 
 
   print ("The TaskTypes Folder ID is " . $fldrAppoinments->ID() . "<BR>");
 
}
 
?>
 
 |