| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 2 |
| CRAP Score | 2.864 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | 1 | public function saveResponseMetabox( $postId ) |
|
| 31 | { |
||
| 32 | 1 | if( !wp_verify_nonce( glsr( Helper::class )->filterInput( '_nonce-response' ), 'response' ))return; |
|
| 33 | $response = strval( glsr( Helper::class )->filterInput( 'response' )); |
||
| 34 | update_post_meta( $postId, 'response', trim( wp_kses( $response, [ |
||
| 35 | 'a' => ['href' => [], 'title' => []], |
||
| 36 | 'em' => [], |
||
| 37 | 'strong' => [], |
||
| 38 | ]))); |
||
| 41 |