# give/4.16.9/src/Framework/FieldsAPI/SecurityChallenge.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 17 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/FieldsAPI/SecurityChallenge.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Framework/FieldsAPI/SecurityChallenge.php
- Modified: 2025-04-16T13:25:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/FieldsAPI/SecurityChallenge.php#L10-L20`.

```php
<?php

namespace Give\Framework\FieldsAPI;


/**
 * Security challenge fields are a special snowflake.
 * They can typically only be validated once on the server.
 * Extending this abstract field will ensure that the field is not validated on the server
 * before the form is fully submitted, avoiding pre-validation conflicting endpoints.
 *
 * @since 4.1.0
 */
abstract class SecurityChallenge extends Field
{
}

```
