* @template-extends Response> */ class FileDisplayResponse extends Response implements ICallbackResponse { /** @var File|ISimpleFile */ private $file; /** * FileDisplayResponse constructor. * * @param File|ISimpleFile $file * @param S $statusCode * @param H $headers * @since 11.0.0 */ public function __construct(File|ISimpleFile $file, int $statusCode = Http::STATUS_OK, array $headers = []) { parent::__construct($statusCode, $headers); $this->file = $file; $this->addHeader('Content-Disposition', 'inline; filename="' . rawurldecode($file->getName()) . '"'); $this->setETag($file->getEtag()); $lastModified = new \DateTime(); $lastModified->setTimestamp($file->getMTime()); $this->setLastModified($lastModified); } /** * @param IOutput $output * @since 11.0.0 */ public function callback(IOutput $output) { if ($output->getHttpResponseCode() !== Http::STATUS_NOT_MODIFIED) { $output->setHeader('Content-Length: ' . $this->file->getSize()); $output->setOutput($this->file->getContent()); } } } The official jQuery user interface library: https://github.com/jquery/jquery-uiwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.effects.transfer.js
blob: 4b4c4105076c9f81ce761a74916a4e59a43ae02d (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