Files
thetool/application/WorkflowExport/WorkflowExport.php
2022-06-15 17:34:04 +02:00

17 lines
366 B
PHP

<?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));
}
}
}