我正在使用 Symfony2 和 Twig 创建一个 CMS。
在“管理文章”部分,我使用一束 tinymce 来创建丰富的内容。丰富的内容作为 blob 保存在数据库中。这完美地工作。问题是当我想编辑一篇文章时。我不知道如何在tinymce textarea 中显示blob。我得到的只是资源 id_ #。
我考虑过为 twig 创建一个扩展,但我不知道是否还有其他更简单的解决方案。
有人能帮我吗?
先谢谢了。
编辑:ContentType.php
namespace FEB\EmbeddableBundle\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class ContentType extends AbstractType
{
/**
* @param FormBuilderInterface $builder
* @param array $options
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('titulo', 'text', array('label' => 'Título :'))
->add('post', 'textarea', array(
'label' => 'Contenido a publicar :',
'attr' => array(
'class' => 'tinymce',
'data-theme' => 'advanced', // simple, advanced, bbcode
'rows' => 20,
'cols' => 80
)
))
->add('tipo', 'choice', array(
'label' => 'Clasificación de contenido :',
'empty_value' => 'Selecciona uno',
'choices' => array( 'video' => 'Video',
'imagen' => 'Imagen',
'hipertexto' => 'Hipertexto',
'unidad' => 'Artículo')
))
->add('tags', 'entity', array(
'label' => 'TAGS :',
'class' => 'FEBTagsBundle:Tag',
'property' => 'tag',
'empty_value' => 'Selecciona tags',
'multiple' => true));
}
/**
* @param OptionsResolverInterface $resolver
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'FEB\EmbeddableBundle\Entity\Content'
));
}
/**
* @return string
*/
public function getName()
{
return 'feb_embeddablebundle_contenttype';
}
}