Commit 30254ed641694643a3c2df7f1188c607e72c0c20

Authored by nbm
1 parent db75acba

Add init and cleanup to the importstorage interface.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3630 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/import/importstorage.inc.php
... ... @@ -37,6 +37,14 @@ class KTImportStorage {
37 37 function getDocumentInfo($sDocumentPath) {
38 38 return PEAR::raiseError('Not implemented');
39 39 }
  40 +
  41 + function init() {
  42 + return true;
  43 + }
  44 +
  45 + function cleanup() {
  46 + return true;
  47 + }
40 48 }
41 49  
42 50 class KTImportStorageInfo {
... ...