Ubiquity 2.5.2
php rapid development framework
Loading...
Searching...
No Matches
CspDirectives.php
Go to the documentation of this file.
1<?php
3
14
15 const DEFAULT_SRC = 'default-src';
16
17 const SCRIPT_SRC = 'script-src';
18
19 const SCRIPT_SRC_ELM = 'script-src-elem';
20
21 const STYLE_SRC = 'style-src';
22
23 const STYLE_SRC_ELM = 'style-src-elem';
24
25 const STYLE_SRC_ATTR = 'style-src-attr';
26
27 const IMG_SRC = 'img-src';
28
29 const CONNECT_SRC = 'connect-src';
30
31 const FONT_SRC = 'font-src';
32
33 const OBJECT_SRC = 'object-src';
34
35 const MEDIA_SRC = 'media-src';
36
37 const FRAME_SRC = 'frame-src';
38
39 const SANDBOX = 'sandbox';
40
41 const REPORT_URI = 'report-uri';
42
43 const CHILD_SRC = 'child-src';
44
45 const FORM_ACTION = 'form-action';
46
47 const FRAME_ANCESTORS = 'frame-ancestors';
48
49 const PLUGIN_TYPES = 'plugin-types';
50
51 const BASE_URI = 'base-uri';
52
53 const REPORT_TO = 'report-to';
54
55 const WORKER_SRC = 'worker-src';
56
57 const MANIFEST_SRC = 'manifest-src';
58
59 const PREFETCH_SRC = 'prefetch-src';
60
61 const NAVIGATE_TO = 'navigate-to';
62}
Ubiquity\security\cspCspDirectives This class is part of Ubiquity.