我必须在现有实体中添加一个 slug 字段来填充字段“名称”。但是这个实体中已经有数据了,我不能删除它们。
我想创建一个控制台脚本,它可以使我所有的“名称”字段都变得模糊。
我不知道该怎么做,因为这不是插入,而只是更新...
class SlugCommand extends ContainerAwareCommand
{
protected function configure()
{
$this
->setName('generate:geo:slug')
->setDescription('Slug generation for GeoBundle ');
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$em = $this->getContainer()->get('doctrine')->getManager();
$regions = $em->getRepository('FMGeoBundle:Region')->findAll();
if($regions === null){
throw new Exception('No Region found');
}
foreach($regions as $region){
// ????? Generate the slug here ??
$em->persist($region);
}
$em->flush();
$output->writeln('Slugs Generated ;) ...');
}
}
我实体中的“slug”字段:
/**
* @var string
*
* @ORM\Column(name="slug", type="string", length=255)
* @Gedmo\Slug(fields={"name"})
*/
protected $slug;