This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- A user was able to display use cases for Zend\File\Transfer that were indeed working on the master branch prior to the file upload rewrite provided by @cgmartin - This commit restores the files from master, and provides fixes/updates/etc. to ensure they work against the develop branch for 2.1.0.
- Loading branch information
124 parents
e861d7a
+
bdc1874
+
540ba2f
+
b4fea29
+
ca1f464
+
23d6321
+
296e43e
+
d444a38
+
3db95a1
+
981d623
+
0a2e3ae
+
af23c99
+
80f5165
+
78d16a9
+
6bc4f23
+
ece1d99
+
0b9ced2
+
9d50bff
+
476d115
+
c660c64
+
23e480a
+
2d1a86f
+
bcd3a85
+
d46ca8d
+
236d691
+
0c0ae53
+
16da5d7
+
1c4489e
+
a57bb3d
+
c14d67b
+
b241e8d
+
10c9e19
+
33f9f3b
+
4585cfe
+
d06b3a5
+
371eaa8
+
c9fbe3f
+
77552c9
+
5883d28
+
518460f
+
63a6a3b
+
f21d820
+
5b80282
+
8d4f7c0
+
3428c24
+
50a5cf9
+
0fcf91c
+
ffd0e6c
+
90cc750
+
4c0cba4
+
9e64972
+
3a86f54
+
f4931d8
+
9c496b9
+
f36d38f
+
1b580df
+
dab01ce
+
bc6e247
+
96739b6
+
e1b5376
+
1c7183f
+
0e68ed1
+
5b3198f
+
929c939
+
f7e2963
+
611c83e
+
1d9e7ae
+
eae64aa
+
1f3f9e7
+
b2d7401
+
2f1d9d3
+
de6b908
+
c73007c
+
9565c63
+
bc2a6d0
+
264d24f
+
c9c493c
+
3992e0d
+
5225965
+
0de9a5c
+
867db21
+
34fe2aa
+
6ec2723
+
e576e38
+
cbc0283
+
d007f6e
+
db4f03e
+
f8f7897
+
4cb349f
+
f5287db
+
e7abf4a
+
b1e5a28
+
6c77a16
+
d3f730c
+
9abb387
+
c0b8c0d
+
f8bc057
+
4f32b4b
+
aa46231
+
52390dd
+
aed5127
+
d6219ab
+
cc8aa50
+
3796880
+
3460327
+
5e212bf
+
099a852
+
6371934
+
c5fa53c
+
bfa4749
+
5ec28c8
+
5078786
+
9d152ef
+
3376d96
+
2851abb
+
8728f2a
+
e5443b4
+
6b3466e
+
435b7e1
+
3abf077
+
3e7551c
+
0af2391
+
60c43e9
+
d3bdecf
commit c1cd9d0
Showing
17 changed files
with
3,425 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
/** | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zf2 for the canonical source repository | ||
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
* @package Zend_File_Transfer | ||
*/ | ||
|
||
namespace Zend\File\Transfer\Adapter; | ||
|
||
use Zend\Filter\FilterPluginManager as BaseManager; | ||
|
||
/** | ||
* Plugin manager implementation for the filter chain. | ||
* | ||
* Enforces that filters retrieved are instances of | ||
* FilterInterface. Additionally, it registers a number of default filters. | ||
* | ||
* @category Zend | ||
* @package Zend_File_Transfer | ||
*/ | ||
class FilterPluginManager extends BaseManager | ||
{ | ||
/** | ||
* Default set of filters | ||
* | ||
* @var array | ||
*/ | ||
protected $aliases = array( | ||
'decrypt' =>'filedecrypt', | ||
'encrypt' =>'fileencrypt', | ||
'lowercase' =>'filelowercase', | ||
'rename' =>'filerename', | ||
'uppercase' =>'fileuppercase', | ||
); | ||
} |
Oops, something went wrong.