def __init__(self, source=None): """Creates a LDS Ordinance instance""" SecondaryObject.__init__(self) SourceBase.__init__(self, source) NoteBase.__init__(self, source) DateBase.__init__(self, source) PlaceBase.__init__(self, source) PrivacyBase.__init__(self, source) if source: self.type = source.type self.famc = source.famc self.temple = source.temple self.status = source.status else: self.type = LdsOrd.DEFAULT_TYPE self.famc = None self.temple = "" self.status = LdsOrd.DEFAULT_STATUS
def __init__(self, source=None): """ Creates a new Event instance, copying from the source if present @param source: An event used to initialize the new event @type source: Event """ PrimaryObject.__init__(self, source) SourceBase.__init__(self, source) NoteBase.__init__(self, source) MediaBase.__init__(self, source) AttributeBase.__init__(self) DateBase.__init__(self, source) PlaceBase.__init__(self, source) if source: self.description = source.description self.type = source.type else: self.description = "" self.type = EventType()