N°4756 - Ease extensibility for CRUD operations

- Change event order in CRUD
 - Add LinkHostObject for link update
 - Add events EVENT_SERVICE_DB_ARCHIVE and  EVENT_SERVICE_DB_UNARCHIVE
This commit is contained in:
Eric Espie
2022-07-08 10:19:54 +02:00
parent fe28319d22
commit 2c265aab44
4 changed files with 114 additions and 46 deletions

View File

@@ -5825,4 +5825,15 @@ JS
$this->FireEvent(EVENT_SERVICE_DB_DELETE_DONE);
}
final protected function EventArchive()
{
$this->FireEvent(EVENT_SERVICE_DB_ARCHIVE);
}
final protected function EventUnarchive()
{
$this->FireEvent(EVENT_SERVICE_DB_UNARCHIVE);
}
}