# extendify/3.2.1/app/Agent/Integrations/WPForms.php

Extendify, version 3.2.1. 22 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.2.1/code/app/Agent/Integrations/WPForms.php
- Raw: https://pluginprobe.com/plugins/extendify/3.2.1/raw/app/Agent/Integrations/WPForms.php
- Modified: 2026-07-08T14:57:26+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/extendify/3.2.1/code/app/Agent/Integrations/WPForms.php#L10-L20`.

```php
<?php

/**
 * WPForms Integration.
 */

namespace Extendify\Agent\Integrations;

defined('ABSPATH') || die('No direct access.');

/**
 * Handles integration with the WPForms plugin.
 */
class WPForms
{
    public function __construct()
    {
        // The Agent only loads for admins; their request is the AI-writes opt-in.
        \add_filter('wpforms_integrations_abilities_allow_write', '__return_true');
    }
}

```
