Refactored project structure.

This commit is contained in:
Dmitry Khomutov 2018-03-04 18:04:15 +07:00
commit c015d8c58b
No known key found for this signature in database
GPG key ID: EC19426474B37AAC
308 changed files with 39 additions and 47 deletions

69
src/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();
}
}