Refactored Form.

This commit is contained in:
Dmitry Khomutov 2018-03-04 17:50:08 +07:00
commit cfe93434ad
No known key found for this signature in database
GPG key ID: EC19426474B37AAC
45 changed files with 58 additions and 83 deletions

69
src/PHPCensor/Form.php Normal file
View file

@ -0,0 +1,69 @@
<?php
namespace PHPCensor;
use PHPCensor\Form\FieldSet;
class Form extends FieldSet
{
/**
* @var string
*/
protected $action = '';
/**
* @var string
*/
protected $method = 'POST';
/**
* @return string
*/
public function getAction()
{
return $this->action;
}
/**
* @param string $action
*/
public function setAction($action)
{
$this->action = $action;
}
/**
* @return string
*/
public function getMethod()
{
return $this->method;
}
/**
* @param string $method
*/
public function setMethod($method)
{
$this->method = $method;
}
/**
* @param View $view
*/
protected function onPreRender(View &$view)
{
$view->action = $this->getAction();
$view->method = $this->getMethod();
parent::onPreRender($view);
}
/**
* @return string
*/
public function __toString()
{
return $this->render();
}
}