How to Change Textarea Field to WYSIWYG Field
To turn an existing text field of some entity into a WYSIWYG field:
- Create a migration that changes the type of the existing column to
wysiwyg
and adds 2 new columns to store additional data associated with the WYSIWYG fields using the following types:wysiwyg_style
andwysiwyg_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 61 | <?php
namespace ACME\Bundle\WysiwygBundle\Migrations\Schema\v1_1;
use Doctrine\DBAL\Schema\Schema;
use Oro\Bundle\CMSBundle\DBAL\Types\WYSIWYGType;
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 UpdateContentField 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('content')) {
return;
}
$table->changeColumn(
'content',
[
'type' => WYSIWYGType::getType('wysiwyg'),
'notnull' => false,
'comment' => '(DC2Type:wysiwyg)',
]
);
$table->addColumn(
'content_style',
'wysiwyg_style',
[
'notnull' => false,
OroOptions::KEY => [
ExtendOptionsManager::MODE_OPTION => ConfigModel::MODE_HIDDEN,
'extend' => ['is_extend' => true, 'owner' => ExtendScope::OWNER_CUSTOM],
],
]
);
$table->addColumn(
'content_properties',
'wysiwyg_properties',
[
'notnull' => false,
OroOptions::KEY => [
ExtendOptionsManager::MODE_OPTION => ConfigModel::MODE_HIDDEN,
'extend' => ['is_extend' => true, 'owner' => ExtendScope::OWNER_CUSTOM],
],
]
);
}
}
|