"id", "iDocumentId" => 'document_id', "iMetadataVersion" => 'metadata_version', "iContentVersionId" => 'content_version_id', "iDocumentTypeId" => 'document_type_id', "sName" => 'name', "sDescription" => 'description', "iStatusId" => 'status_id', "dVersionCreated" => 'version_created', "iVersionCreatorId" => 'version_creator_id', ); function KTDocumentMetadataVersion() { } // {{{ getters/setters function getDocumentId() { return $this->iDocumentId; } function setDocumentId($iNewValue) { $this->iDocumentId = $iNewValue; } function getMetadataVersion() { return $this->iMetadataVersion; } function setMetadataVersion($iNewValue) { $this->iMetadataVersion = $iNewValue; } function getDocumentTypeId() { return $this->iDocumentTypeId; } function setDocumentTypeId($iNewValue) { $this->iDocumentTypeId = $iNewValue; } function getName() { return $this->sName; } function setName($sNewValue) { $this->sName = $sNewValue; } function getDescription() { return $this->sDescription; } function setDescription($sNewValue) { $this->sDescription = $sNewValue; } function getStatusId() { return $this->sStatusId; } function setStatusId($iNewValue) { $this->sStatusId = $iNewValue; } function getVersionCreated() { return $this->dVersionCreated; } function setVersionCreated($dNewValue) { $this->dVersionCreated = $dNewValue; } function getVersionCreatorId() { return $this->iVersionCreatorId; } function setVersionCreatorId($iNewValue) { $this->iVersionCreatorId = $iNewValue; } // }}} } ?>