%PDF- %PDF-
| Direktori : /www/varak.net/losik.varak.net/vendor/nette/forms/src/Forms/ |
| Current File : //www/varak.net/losik.varak.net/vendor/nette/forms/src/Forms/SubmitterControl.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 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);