add option to dissable fileproxies

This commit is contained in:
Robin Appelman 2011-10-22 14:10:51 +02:00 committed by Robin Appelman
parent 3d67cd51c2
commit 82394f9527
1 changed files with 7 additions and 0 deletions

View File

@ -39,6 +39,7 @@
class OC_FileProxy{
private static $proxies=array();
public static $enabled=true;
/**
* check if this proxy implments a specific proxy operation
@ -84,6 +85,9 @@ class OC_FileProxy{
}
public static function runPreProxies($operation,&$filepath,&$filepath2=null){
if(!self::$enabled){
return true;
}
$proxies=self::getProxies($operation,false);
$operation='pre'.$operation;
foreach($proxies as $proxy){
@ -101,6 +105,9 @@ class OC_FileProxy{
}
public static function runPostProxies($operation,$path,$result){
if(!self::$enabled){
return $result;
}
$proxies=self::getProxies($operation,true);
$operation='post'.$operation;
foreach($proxies as $proxy){