Source for file IFormControl.php
Documentation is available at IFormControl.php
- 1: <?php
- 3: /**
- 4: * Nette Framework
- 5: *
- 11: */
- 15: /**
- 16: * Defines method that must be implemented to allow a component to act like a form control.
- 17: *
- 20: */
- 22: {
- 24: /**
- 25: * Loads HTTP data.
- 27: */
- 30: /**
- 31: * Sets control's value.
- 34: */
- 37: /**
- 38: * Returns control's value.
- 40: */
- 43: /**
- 45: */
- 48: /**
- 49: * Returns errors corresponding to control.
- 51: */
- 54: /**
- 55: * Is control disabled?
- 57: */
- 60: /**
- 61: * Returns translated string.
- 65: */
- 68: }