1 | <?php |
||
12 | class JCFirebaseOption |
||
13 | { |
||
14 | const __default = null; |
||
15 | |||
16 | const OPTION_SHALLOW = 'shallow'; |
||
17 | const SHALLOW_TRUE = 'true'; |
||
18 | const SHALLOW_FALSE = 'false'; |
||
19 | |||
20 | const OPTION_PRINT = 'print'; |
||
21 | const PRINT_PRETTY = 'pretty'; |
||
22 | const PRINT_SILENT = 'silent'; |
||
23 | |||
24 | const REQ_TYPE_GET = 0; |
||
25 | const REQ_TYPE_PUT = 1; |
||
26 | const REQ_TYPE_POST = 2; |
||
27 | const REQ_TYPE_PATCH = 3; |
||
28 | const REQ_TYPE_DELETE = 4; |
||
29 | |||
30 | public static function isAllowPrint($reqType = self::REQ_TYPE_GET,$pType = self::PRINT_PRETTY){ |
||
43 | } |