PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.9
GiveWP – Donation Plugin and Fundraising Platform v4.16.9
4.17.0 4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 All 256 releases
give / src / DonationSpam / Akismet / DataTransferObjects / SpamContext.php

SpamContext.php in GiveWP – Donation Plugin and Fundraising Platform 4.16.9, at src/DonationSpam/Akismet/DataTransferObjects/SpamContext.php

55 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Give\DonationSpam\Akismet\DataTransferObjects;
4
5 /**
6 * @since 3.15.0
7 */
8 class SpamContext
9 {
10 /**
11 * @var CommentCheckArgs
12 */
13 protected $args;
14
15 /**
16 * @var array
17 */
18 protected $response;
19
20 /**
21 * @since 3.15.0
22 */
23 public function __construct(CommentCheckArgs $args, array $response)
24 {
25 $this->args = $args;
26 $this->response = $response;
27 }
28
29 /**
30 * @since 3.15.0
31 */
32 public function __serialize(): array
33 {
34 return [
35 'donor_email' => $this->args->comment_author_email,
36 'filter' => 'akismet',
37 'message' => $this->formatMessage(),
38 ];
39 }
40
41 /**
42 * @since 3.15.0
43 */
44 public function formatMessage(): string
45 {
46 return sprintf(
47 '<p><strong>%1$s</strong><pre>%2$s</pre></p><strong>%3$s</strong><pre>%4$s</pre><p>',
48 __( 'Request', 'give' ),
49 print_r( $this->args, true ),
50 __( 'Response', 'give' ),
51 print_r( $this->response, true )
52 );
53 }
54 }
55