# packeta/1.6.2/deps/nette/forms/src/Forms/SubmitterControl.php

Packeta, version 1.6.2. 21 lines.

- Page: https://pluginprobe.com/plugins/packeta/1.6.2/code/deps/nette/forms/src/Forms/SubmitterControl.php
- Raw: https://pluginprobe.com/plugins/packeta/1.6.2/raw/deps/nette/forms/src/Forms/SubmitterControl.php
- Modified: 2023-08-30T08:36:18+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/packeta/1.6.2/code/deps/nette/forms/src/Forms/SubmitterControl.php#L10-L20`.

```php
<?php

/**
 * This file is part of the Nette Framework (https://nette.org)
 * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
 */
declare (strict_types=1);
namespace Packetery\Nette\Forms;

/**
 * Defines method that must be implemented to allow a control to submit web form.
 */
interface SubmitterControl extends Control
{
    /**
     * Gets the validation scope. Clicking the button validates only the controls within the specified scope.
     */
    function getValidationScope() : ?array;
}
\interface_exists(ISubmitterControl::class);

```
