本文整理汇总了PHP中ArtefactTypeFileBase::commit方法的典型用法代码示例。如果您正苦于以下问题:PHP ArtefactTypeFileBase::commit方法的具体用法?PHP ArtefactTypeFileBase::commit怎么用?PHP ArtefactTypeFileBase::commit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ArtefactTypeFileBase
的用法示例。
在下文中一共展示了ArtefactTypeFileBase::commit方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: commit
/**
* This function updates or inserts the artefact. This involves putting
* some data in the artefact table (handled by parent::commit()), and then
* some data in the artefact_file_files table.
*/
public function commit()
{
// Just forget the whole thing when we're clean.
if (empty($this->dirty)) {
return;
}
// We need to keep track of newness before and after.
$new = empty($this->id);
// Commit to the artefact table.
parent::commit();
// Reset dirtyness for the time being.
$this->dirty = true;
$data = (object) array('artefact' => $this->get('id'), 'size' => $this->get('size'), 'oldextension' => $this->get('oldextension'), 'fileid' => $this->get('fileid'), 'filetype' => $this->get('filetype'));
if ($new) {
if (empty($data->fileid)) {
$data->fileid = $data->artefact;
}
insert_record('artefact_file_files', $data);
} else {
update_record('artefact_file_files', $data, 'artefact');
}
$this->dirty = false;
}