diff --git a/h5p.classes.php b/h5p.classes.php index 4d903af..4a3203a 100644 --- a/h5p.classes.php +++ b/h5p.classes.php @@ -553,6 +553,11 @@ interface H5PFrameworkInterface { * return int */ public function getLibraryContentCount(); + + /** + * Will trigger after the export file is created. + */ + public function afterExportCreated(); } /** @@ -1599,6 +1604,7 @@ Class H5PExport { } unlink($tmpFile); + $this->h5pF->afterExportCreated(); return true; }