Added framework method to clear dirsize cache

HFP-23
pull/29/head
Frode Petterson 2016-09-30 13:41:50 +02:00
parent 0a9aa5a783
commit e4266efb22
1 changed files with 6 additions and 0 deletions

View File

@ -553,6 +553,11 @@ interface H5PFrameworkInterface {
* return int * return int
*/ */
public function getLibraryContentCount(); public function getLibraryContentCount();
/**
* Will trigger after the export file is created.
*/
public function afterExportCreated();
} }
/** /**
@ -1599,6 +1604,7 @@ Class H5PExport {
} }
unlink($tmpFile); unlink($tmpFile);
$this->h5pF->afterExportCreated();
return true; return true;
} }