2012-05-11 18:33:43 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* local storage backnd in temporary folder for testing purpores
|
|
|
|
*/
|
|
|
|
class OC_Filestorage_Temporary extends OC_Filestorage_Local{
|
2012-09-07 13:22:01 +00:00
|
|
|
public function __construct($arguments) {
|
2012-05-11 18:33:43 +00:00
|
|
|
$this->datadir=OC_Helper::tmpFolder();
|
|
|
|
}
|
|
|
|
|
2012-09-07 13:22:01 +00:00
|
|
|
public function cleanUp() {
|
2012-05-11 18:33:43 +00:00
|
|
|
OC_Helper::rmdirr($this->datadir);
|
|
|
|
}
|
|
|
|
|
2012-09-07 13:22:01 +00:00
|
|
|
public function __destruct() {
|
2012-05-11 18:33:43 +00:00
|
|
|
$this->cleanUp();
|
|
|
|
}
|
|
|
|
}
|