# give/4.16.8.1/src/DonationForms/Actions/GenerateDonationFormPreviewRouteUrl.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 25 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/DonationForms/Actions/GenerateDonationFormPreviewRouteUrl.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/DonationForms/Actions/GenerateDonationFormPreviewRouteUrl.php
- Modified: 2023-10-16T17:55:46+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.8.1/code/src/DonationForms/Actions/GenerateDonationFormPreviewRouteUrl.php#L10-L20`.

```php
<?php

namespace Give\DonationForms\Actions;


use Give\Framework\Routes\Route;

/**
 * @since 3.0.0
 */
class GenerateDonationFormPreviewRouteUrl
{
    /**
     * @since 3.0.0
     */
    public function __invoke(int $formId): string
    {
        $args = [
            'form-id' => $formId
        ];

        return Route::url('donation-form-view-preview', $args);
    }
}

```
