deblan.tv/vendor/trinity/src/Trinity/Bundle/ContentManagerBundle/Form/Type/BlockCodeType.php
2015-03-02 21:57:49 +01:00

56 lines
1.4 KiB
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace Trinity\Bundle\ContentManagerBundle\Form\Type;
use Propel\PropelBundle\Form\BaseAbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class BlockCodeType extends BaseAbstractType
{
protected $options = array(
'data_class' => 'Trinity\Bundle\ContentManagerBundle\Model\Block',
);
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add(
'value',
'ace_editor',
array(
'wrapper_attr' => array(), // aceeditor wrapper html attributes.
'width' => '80%',
'height' => 750,
'font_size' => 12,
'mode' => 'ace/mode/twig',
'theme' => 'ace/theme/vibrant_ink',
'tab_size' => null,
'read_only' => false,
'use_soft_tabs' => false,
'use_wrap_mode' => false,
'show_print_margin' => null,
'highlight_active_line' => false
)
);
}
/**
* {@inheritdoc}
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults($this->options);
}
/**
* {@inheritdoc}
*/
public function getName()
{
return 'block';
}
}