moved BaseAbstractType from Model\Form to Form

This commit is contained in:
Sergii Kliuchnyk 2012-11-10 13:06:21 +02:00
parent accb888e8a
commit 6bac311998
2 changed files with 1 additions and 62 deletions

View file

@ -1,61 +0,0 @@
<?php
namespace Propel\PropelBundle\Model\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
abstract class BaseAbstractType extends AbstractType
{
protected $options = array(
'name' => '',
);
function __construct($mergeOptions = null)
{
if ($mergeOptions) {
$this->mergeOptions($mergeOptions);
}
}
public function setOption($name, $value)
{
$this->options[$name] = $value;
}
public function getOption($name)
{
return $this->options[$name];
}
public function setOptions($options)
{
$this->options = $options;
}
public function getOptions()
{
return $this->options;
}
public function mergeOptions($options)
{
$this->options = array_merge($this->options, $options);
}
/**
* {@inheritdoc}
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults($this->options);
}
/**
* {@inheritdoc}
*/
public function getName()
{
return $this->getOption('name');
}
}

View file

@ -2,7 +2,7 @@
namespace ##NAMESPACE##;
use Propel\PropelBundle\Model\Form\BaseAbstractType;
use Propel\PropelBundle\Form\BaseAbstractType;
use Symfony\Component\Form\FormBuilderInterface;
class ##CLASS## extends BaseAbstractType