# give/4.16.8.1/src/DonationForms/Actions/GenerateDonationFormViewRouteUrl.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/GenerateDonationFormViewRouteUrl.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/DonationForms/Actions/GenerateDonationFormViewRouteUrl.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/GenerateDonationFormViewRouteUrl.php#L10-L20`.

```php
<?php

namespace Give\DonationForms\Actions;


use Give\Framework\Routes\Route;

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

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

```
