/opt/alt/php55/usr/share/pear/test/Form/Symfony/Component/Form/Tests/Fixtures
NameSizeModeActions
AlternatingRowType.php7640644editdlrm
Author.php12630644editdlrm
AuthorType.php7120644editdlrm
CustomArrayObject.php15590644editdlrm
FixedDataTransformer.php11090644editdlrm
FixedFilterListener.php16860644editdlrm
foo00644editdlrm
FooSubType.php7690644editdlrm
FooSubTypeWithParentInstance.php8110644editdlrm
FooType.php7560644editdlrm
FooTypeBarExtension.php7810644editdlrm
FooTypeBazExtension.php6540644editdlrm
TestExtension.php17040644editdlrm
Edit: /opt/alt/php55/usr/share/pear/test/Form/Symfony/Component/Form/Tests/Fixtures/TestExtension.php (1704B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form\Tests\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; } }