# give/4.16.9/src/Framework/FormDesigns/Contracts/FormDesignInterface.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/FormDesigns/Contracts/FormDesignInterface.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Framework/FormDesigns/Contracts/FormDesignInterface.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.9/code/src/Framework/FormDesigns/Contracts/FormDesignInterface.php#L10-L20`.

```php
<?php

namespace Give\Framework\FormDesigns\Contracts;

/**
 * The structure of a GiveWP FormDesign
 *
 * @since 3.0.0
 */
interface FormDesignInterface
{
    /**
     * Return a unique identifier for the design
     *
     * @since 3.0.0
     */
    public static function id(): string;

    /**
     * Returns a human-readable name for the design
     *
     * @since 3.0.0
     */
    public static function name(): string;
}

```
