class Marriage - jcobban/Genealogy GitHub Wiki
class Marriage
Up: Object-Oriented Access to Database Records
This class is derived from Record to implement the logical interface to a record in the Marriage Transcriptions table (Marriage). Each entry in this table contains the transcription of a Marriage registration entry, Marriage certficate, Banns certificate, or Marriage LIcense. Information on the participants of a marriage: the bride, groom, and minister, are recorded in associated records from class MarriageParticipant table (MarrigeIndi)
Fields
This record presents the following fields:
| name | description | synonyms |
|---|---|---|
| 'regdomain' | identifier of registration class Domain | 'domain' |
| 'regyear' | registration year | 'year' |
| 'regnum' | unique number identifying registration within registration year and domain | 'num', 'number' |
| 'msvol' | Microfilm reel number | 'reel' |
| 'regcounty' | registration county | 'county' |
| 'regtownship' | registration township | 'township' |
| 'date' | marriage date | |
| 'calcdate' | numeric date for sorting | |
| 'place' | marriage place | |
| 'licensetype' | license, banns, or other document type code | |
| 'remarks' | remarks | |
| 'changedby' | changed by | |
| 'changedate' | changed date | |
| 'image' | URL of image of original document | |
| 'registrar' | registrar | |
| 'regdate' | regdate | |
| 'originalvolume' | originalvolume | |
| 'originalpage' | originalpage | |
| 'originalitem' | originalitem |
Table of Contents
- new Marriage($parms)
- $marriage->set($fieldname, $value)
- $marriage->getBride()
- $marriage->getGroom()
- $marriage->getMinister()
Next: new Marriage($parms)