# give/4.16.8.1/src/Framework/FieldsAPI/Form.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Framework/FieldsAPI/Form.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/Framework/FieldsAPI/Form.php
- Modified: 2023-01-18T19:19: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/give/4.16.8.1/code/src/Framework/FieldsAPI/Form.php#L10-L20`.

```php
<?php

namespace Give\Framework\FieldsAPI;

use Give\Framework\FieldsAPI\Contracts\Collection;
use Give\Framework\FieldsAPI\Contracts\Node;
use Give\Framework\FieldsAPI\Exceptions\TypeNotSupported;

/**
 * @since 2.12.0
 */
class Form implements Node, Collection
{
    use Concerns\HasLabel;
    use Concerns\HasName;
    use Concerns\HasNodes;
    use Concerns\HasType;
    use Concerns\InsertNode;
    use Concerns\MoveNode;
    use Concerns\NameCollision;
    use Concerns\RemoveNode;
    use Concerns\SerializeAsJson;
    use Concerns\WalkNodes;

    const TYPE = 'form';

    /**
     * @since 2.23.1 Make constructor as private to avoid unsafe usage of `new static()`.
     *
     * @param $name
     */
    public function __construct($name)
    {
        $this->name = $name;
    }

    public function getNodeType(): string
    {
        return 'group';
    }

    /**
     * @inheritDoc
     *
     * @param Section[] $nodes
     *
     * @throws TypeNotSupported
     */
    public function append(Node ...$nodes)
    {
        foreach ($nodes as $node) {
            if ( ! $node instanceof Section) {
                throw new TypeNotSupported($node->getType());
            }

            $this->insert($node);
        }

        return $this;
    }
}

```
