# ivyforms/0.8/backend/src/Controllers/Integration/GetAllIntegrationsController.php

The Innovative Form Builder – IvyForms, version 0.8. 52 lines.

- Page: https://pluginprobe.com/plugins/ivyforms/0.8/code/backend/src/Controllers/Integration/GetAllIntegrationsController.php
- Raw: https://pluginprobe.com/plugins/ivyforms/0.8/raw/backend/src/Controllers/Integration/GetAllIntegrationsController.php
- Modified: 2026-01-13T11:11:38+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/ivyforms/0.8/code/backend/src/Controllers/Integration/GetAllIntegrationsController.php#L10-L20`.

```php
<?php

namespace IvyForms\Controllers\Integration;

use IvyForms\Common\Exceptions\ForbiddenException;
use IvyForms\Common\Sanitizer\Sanitizer;
use IvyForms\Controllers\Controller;
use IvyForms\Services\Integrations\IntegrationRegistry;
use WP_REST_Request;
use WP_REST_Response;

/**
 * Get All Integrations Controller
 *
 * Returns all registered integrations from the registry
 *
 * @since 1.0.0
 */
class GetAllIntegrationsController extends Controller
{
    private IntegrationRegistry $registry;

    public function __construct(IntegrationRegistry $registry)
    {
        $this->registry = $registry;
    }

    /**
     * Handle the request
     *
     * @param WP_REST_Request<array<string, mixed>> $data
     * @return WP_REST_Response
     * @throws ForbiddenException
     */
    public function handle(WP_REST_Request $data): WP_REST_Response
    {
        // Verify the nonce
        Sanitizer::verifyNonce($data->get_header('X-WP-Nonce'));

        $plan = Sanitizer::sanitizeText($data->get_param('plan'));

        $integrations = $plan
            ? $this->registry->getByPlan($plan)
            : $this->registry->getAll();

        return new WP_REST_Response([
            'success' => true,
            'data' => $integrations,
        ], 200);
    }
}

```
