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