How to Add WYSIWYG Field
To add a WYSIWYG field to an entity, you should add 3 columns in a migration with the following types: wysiwyg
, wysiwyg_style
, and wysiwyg_properties
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | <?php
namespace ACME\Bundle\WysiwygBundle\Migrations\Schema\v1_1;
use Doctrine\DBAL\Schema\Schema;
use Oro\Bundle\EntityConfigBundle\Entity\ConfigModel;
use Oro\Bundle\EntityExtendBundle\EntityConfig\ExtendScope;
use Oro\Bundle\EntityExtendBundle\Migration\ExtendOptionsManager;
use Oro\Bundle\EntityExtendBundle\Migration\OroOptions;
use Oro\Bundle\MigrationBundle\Migration\Migration;
use Oro\Bundle\MigrationBundle\Migration\QueryBag;
class AddTeaserField implements Migration
{
/**
* {@inheritdoc}
*/
public function up(Schema $schema, QueryBag $queries): void
{
if (!$schema->hasTable('acme_blog_post')) {
return;
}
$table = $schema->getTable('acme_blog_post');
if ($table->hasColumn('teaser')) {
return;
}
$table->addColumn('teaser', 'wysiwyg', [
'notnull' => false,
'comment' => '(DC2Type:wysiwyg)',
OroOptions::KEY => [
'extend' => ['is_extend' => true, 'owner' => ExtendScope::OWNER_CUSTOM],
'entity' => ['label' => 'acme.wysiwyg.blogpost.teaser.label'],
],
]);
$table->addColumn(
'teaser_style',
'wysiwyg_style',
[
'notnull' => false,
OroOptions::KEY => [
ExtendOptionsManager::MODE_OPTION => ConfigModel::MODE_HIDDEN,
'extend' => ['is_extend' => true, 'owner' => ExtendScope::OWNER_CUSTOM],
],
]
);
$table->addColumn(
'teaser_properties',
'wysiwyg_properties',
[
'notnull' => false,
OroOptions::KEY => [
ExtendOptionsManager::MODE_OPTION => ConfigModel::MODE_HIDDEN,
'extend' => ['is_extend' => true, 'owner' => ExtendScope::OWNER_CUSTOM],
],
]
);
}
}
|