ControlledNameFactory.php
Go to the documentation of this file.00001 <?PHP
00002
00003 #
00004 # FILE: ControlledNameFactory.php
00005 #
00006 # Part of the Collection Workflow Integration System
00007 # Copyright 2009 Edward Almasy and Internet Scout
00008 # http://scout.wisc.edu
00009 #
00010
00014 class ControlledNameFactory extends ItemFactory {
00015
00016 # ---- PUBLIC INTERFACE --------------------------------------------------
00017
00018 # object constructor
00019 function ControlledNameFactory($FieldId = NULL)
00020 {
00021 # set up item factory base class
00022 $this->ItemFactory("ControlledName", "ControlledNames", "ControlledNameId", "ControlledName", $FieldId);
00023 }
00024
00025
00026 # ---- PRIVATE INTERFACE -------------------------------------------------
00027
00028 }
00029
00030
00031 ?>