Ubiquity 2.5.2
php rapid development framework
Loading...
Searching...
No Matches
CspValues.php
Go to the documentation of this file.
1<?php
3
12class CspValues {
13
14 const ALL = '*';
15
16 const NONE = 'none';
17
18 const DATA = 'data:';
19
20 const HTTPS = 'https:';
21
22 const SELF = 'self';
23
24 const UNSAFE_INLINE = 'unsafe-inline';
25
26 const STRICT_DYNAMIC = 'strict-dynamic';
27
28 const UNSAFE_HASHES = 'unsafe-hashes';
29
30 const QUOTED = [
36 ];
37}
Ubiquity\security\csp$CspValues This class is part of Ubiquity.
Definition CspValues.php:12