This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Component/Form/Fixtures/TestExtension.php
Fabien Potencier 17cd08dc6c fixed CS
2011-06-08 19:56:59 +02:00

64 lines
1.4 KiB
PHP

<?php
namespace Symfony\Tests\Component\Form\Fixtures;
use Symfony\Component\Form\FormTypeInterface;
use Symfony\Component\Form\FormTypeExtensionInterface;
use Symfony\Component\Form\FormTypeGuesserInterface;
use Symfony\Component\Form\FormExtensionInterface;
class TestExtension implements FormExtensionInterface
{
private $types = array();
private $extensions = array();
private $guesser;
public function __construct(FormTypeGuesserInterface $guesser)
{
$this->guesser = $guesser;
}
public function addType(FormTypeInterface $type)
{
$this->types[$type->getName()] = $type;
}
public function getType($name)
{
return isset($this->types[$name]) ? $this->types[$name] : null;
}
public function hasType($name)
{
return isset($this->types[$name]);
}
public function addTypeExtension(FormTypeExtensionInterface $extension)
{
$type = $extension->getExtendedType();
if (!isset($this->extensions[$type])) {
$this->extensions[$type] = array();
}
$this->extensions[$type][] = $extension;
}
public function getTypeExtensions($name)
{
return isset($this->extensions[$name]) ? $this->extensions[$name] : array();
}
public function hasTypeExtensions($name)
{
return isset($this->extensions[$name]);
}
public function getTypeGuesser()
{
return $this->guesser;
}
}