[Form] Missing methods from interfaces

This commit is contained in:
John Wards 2011-03-22 22:20:14 +00:00
parent 1a014d130e
commit 85701b65af
2 changed files with 14 additions and 0 deletions

View File

@ -36,6 +36,18 @@ interface FormInterface extends \ArrayAccess, \Traversable, \Countable
function hasChildren();
function hasParent();
function getErrors();
function getData();
function getClientData();
function getRenderer();
function isBound();
/**
* Returns the name by which the form is identified in forms.
*

View File

@ -22,5 +22,7 @@ interface FormRendererInterface
function setVar($name, $value);
public function getVar($name);
function addPlugin(FormRendererPluginInterface $plugin);
}