Added linework export with progress bar

This commit is contained in:
Frank Schubert
2022-06-15 17:34:04 +02:00
parent c105f9926c
commit 1fddf682a1
6 changed files with 671 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
<?php
class WorkflowExport extends mfBaseModel {
public function loadByUid($uid) {
if(!$uid) {
return false;
}
$uid = $this->db->escape($uid);
$res = $this->db->select("WorkflowExport", "*", "uid='$uid' ORDER BY id DESC LIMIT 1");
if($this->db->num_rows($res)) {
$this->load($this->db->fetch_object($res));
}
}
}