mirror of
https://codeberg.org/SeedDMS/paperless
synced 2024-11-26 07:22:08 +00:00
views can now be updated
This commit is contained in:
parent
d5b5a1cb49
commit
aefd3b8807
|
@ -109,6 +109,10 @@ class SeedDMS_PaperlessView { /* {{{ */
|
||||||
return $this->_view;
|
return $this->_view;
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
|
public function setView($view) { /* {{{ */
|
||||||
|
$this->_view = $view;
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Add a new to the database.
|
* Add a new to the database.
|
||||||
*
|
*
|
||||||
|
@ -122,6 +126,11 @@ class SeedDMS_PaperlessView { /* {{{ */
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
$this->_id = $db->getInsertID();
|
$this->_id = $db->getInsertID();
|
||||||
|
} else {
|
||||||
|
$queryStr = "UPDATE `tblPaperlessView` SET `view`=".$db->qstr(json_encode($this->_view))." WHERE `id`=".$this->_id;
|
||||||
|
if (!$db->getResult($queryStr)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return self::getInstance($this->_id, $this->_dms);
|
return self::getInstance($this->_id, $this->_dms);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user