Conditions | 4 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | public static function isAllowPrint( $reqType = self::REQ_TYPE_GET, $pType = self::PRINT_PRETTY ) { |
||
30 | if ( $pType == self::PRINT_PRETTY ) { |
||
31 | return true; |
||
32 | } |
||
33 | |||
34 | if ( $pType == self::PRINT_SILENT ) { |
||
35 | if ( $reqType == self::REQ_TYPE_DELETE ) { |
||
36 | return false; |
||
37 | } |
||
38 | } |
||
39 | |||
40 | return true; |
||
41 | } |
||
42 | } |