%PDF- %PDF-
| Direktori : /proc/thread-self/root/www/varak.net/losik.varak.net/vendor/nette/forms/src/Forms/ |
| Current File : //proc/thread-self/root/www/varak.net/losik.varak.net/vendor/nette/forms/src/Forms/Control.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 component to act like a form control.
*/
interface Control
{
/**
* Sets control's value.
* @param mixed $value
* @return static
*/
function setValue($value);
/**
* Returns control's value.
* @return mixed
*/
function getValue();
function validate(): void;
/**
* Returns errors corresponding to control.
*/
function getErrors(): array;
/**
* Is control value excluded from $form->getValues() result?
*/
function isOmitted(): bool;
}
interface_exists(IControl::class);