interface ConfigInterface in One Click Upload 7.2
Hierarchy
- interface \Flow\ConfigInterface
Expanded class hierarchy of ConfigInterface
All classes that implement ConfigInterface
1 file declares its use of ConfigInterface
- MongoConfigInterface.php in flowphp/
src/ Flow/ Mongo/ MongoConfigInterface.php
File
- flowphp/
src/ Flow/ ConfigInterface.php, line 5
Namespace
FlowView source
interface ConfigInterface {
/**
* Get path to temporary directory for chunks storage
*
* @return string
*/
public function getTempDir();
/**
* Generate chunk identifier
*
* @return callable
*/
public function getHashNameCallback();
/**
* Callback to pre-process chunk
*
* @param callable $callback
*/
public function setPreprocessCallback($callback);
/**
* Callback to preprocess chunk
*
* @return callable|null
*/
public function getPreprocessCallback();
/**
* Delete chunks on save
*
* @param bool $delete
*/
public function setDeleteChunksOnSave($delete);
/**
* Delete chunks on save
*
* @return bool
*/
public function getDeleteChunksOnSave();
}
Members
Name![]() |
Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigInterface:: |
public | function | Delete chunks on save | 1 |
ConfigInterface:: |
public | function | Generate chunk identifier | 1 |
ConfigInterface:: |
public | function | Callback to preprocess chunk | 1 |
ConfigInterface:: |
public | function | Get path to temporary directory for chunks storage | 1 |
ConfigInterface:: |
public | function | Delete chunks on save | 1 |
ConfigInterface:: |
public | function | Callback to pre-process chunk | 1 |