ClassificationFactory.php
Go to the documentation of this file.00001 <?PHP
00002
00003 #
00004 # FILE: ClassificationFactory.php
00005 # AUTHOR: Edward Almasy
00006 #
00007 # Part of the Scout Portal Toolkit
00008 # Copyright 2004 Internet Scout Project
00009 # http://scout.wisc.edu
00010 #
00011
00016 class ClassificationFactory extends ItemFactory {
00017
00018 # ---- PUBLIC INTERFACE --------------------------------------------------
00019
00020 # object constructor
00021
00025 function ClassificationFactory($FieldId = NULL)
00026 {
00027 # set up item factory base class
00028 $this->ItemFactory("Classification", "Classifications", "ClassificationId", "ClassificationName", $FieldId);
00029 }
00030
00031
00032 # ---- PRIVATE INTERFACE -------------------------------------------------
00033
00034 }
00035
00036
00037 ?>