add onPostRemoveAttribute callback

This commit is contained in:
Uwe Steinmann 2022-02-26 14:15:06 +01:00
parent 8052b76165
commit 2d6c1d635b
2 changed files with 10 additions and 1 deletions

View File

@ -298,6 +298,7 @@ class SeedDMS_Core_Object { /* {{{ */
$this->getAttributes();
}
if(isset($this->_attributes[$attrdef->getId()])) {
$oldvalue = $this->_attributes[$attrdef->getId()]->getValue();
switch(get_class($this)) {
case $this->_dms->getClassname('document'):
$queryStr = "DELETE FROM `tblDocumentAttributes` WHERE `document`=".$this->_id." AND `attrdef`=".$attrdef->getId();
@ -315,6 +316,14 @@ class SeedDMS_Core_Object { /* {{{ */
if (!$res)
return false;
/* Check if 'onPostRemoveAttribute' callback is set */
if(isset($this->_dms->callbacks['onPostRemoveAttribute'])) {
foreach($this->_dms->callbacks['onPostRemoveAttribute'] as $callback) {
if(!call_user_func($callback[0], $callback[1], $this, $attrdef, $oldvalue)) {
}
}
}
unset($this->_attributes[$attrdef->getId()]);
}
return true;

View File

@ -28,7 +28,7 @@
- getLastWorkflowLog() returns a workflow entry even if the workflow has ended
- backport setFileType() from 6.0.x
- add SeedDMS_Core_File::fileExtension()
- add callbacks on onPostUpdateAttribute and onPostAddAttribute
- add callbacks on onPostUpdateAttribute, onPostRemoveAttribute, onPostAddAttribute
</notes>
<contents>
<dir baseinstalldir="SeedDMS" name="/">