arrayCache = $arrayCache; $this->manager = $manager; $this->logger = $logger; } /** * Wraps the given storage when it is not a shared storage * * @param string $mountPoint * @param IStorage $storage * @param IMountPoint $mount * @param bool $force apply the wrapper even if the storage normally has encryption disabled, helpful for repair steps * @return Encryption|IStorage */ public function wrapStorage(string $mountPoint, IStorage $storage, IMountPoint $mount, bool $force = false) { $parameters = [ 'storage' => $storage, 'mountPoint' => $mountPoint, 'mount' => $mount ]; if ($force || (!$storage->instanceOfStorage(IDisableEncryptionStorage::class) && $mountPoint !== '/')) { $user = \OC::$server->getUserSession()->getUser(); $mountManager = Filesystem::getMountManager(); $uid = $user ? $user->getUID() : null; $fileHelper = \OC::$server->get(IFile::class); $keyStorage = \OC::$server->get(EncryptionKeysStorage::class); $util = new Util( new View(), \OC::$server->getUserManager(), \OC::$server->getGroupManager(), \OC::$server->getConfig() ); $update = new Update( new View(), $util, Filesystem::getMountManager(), $this->manager, $fileHelper, $this->logger, $uid ); return new Encryption( $parameters, $this->manager, $util, $this->logger, $fileHelper, $uid, $keyStorage, $update, $mountManager, $this->arrayCache ); } else { return $storage; } } } _PDFLinearization'>Temp_PDFLinearization Apache XML Graphics FOP: https://github.com/apache/xmlgraphics-fopwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/docs/examples/fo/images.fo
blob: ae57bbd778acde65f55aa720cecff1087cf89b91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83