meniam/ckeditor-bundle
Composer 安装命令:
composer require meniam/ckeditor-bundle
包简介
Symfony2 bundle for easy integration of the CKEditor WYSIWYG
README 文档
README
Installation
- Add TrsteelCkeditorBundle to your composer.json
- Enable the bundle
- Install bundle assets
- Configure the bundle (optional)
- Add the editor to a form
- Configure data transformers
Step 1: Add TrsteelCkeditorBundle to your composer.json
php composer.phar require Trsteel/ckeditor-bundle ~1.8
Step 2: Enable the bundle
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Trsteel\CkeditorBundle\TrsteelCkeditorBundle(), ); }
Step 3: Install bundle assets
$ php ./app/console assets:install web --symlink
--symlink is optional
Step 4: Configure the bundle (optional)
For a full configuration dump use:
$ php ./app/console config:dump-reference TrsteelCkeditorBundle
An example configuration:
trsteel_ckeditor: class: Trsteel\CkeditorBundle\Form\Type\CkeditorType transformers: ['html_purifier'] toolbar: ['document', 'clipboard', 'editing', '/', 'basicstyles', 'paragraph', 'links', '/', 'insert', 'styles', 'tools'] toolbar_groups: document: ['Source','-','Save','-','Templates'] clipboard: ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo'] editing: ['Find','Replace','-','SelectAll'] basicstyles: ['Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat'] paragraph: ['NumberedList','BulletedList','-','Outdent','Indent','-','JustifyLeft', 'JustifyCenter','JustifyRight','JustifyBlock'] links: ['Link','Unlink','Anchor'] insert: ['Image','Flash','Table','HorizontalRule'] styles: ['Styles','Format'] tools: ['Maximize', 'ShowBlocks'] ui_color: '#000000' startup_outline_blocks: true width: 800 #Integer or % height: 300 #Integer or % language: 'en-au' filebrowser_upload_url: url: relative-url.php?type=file filebrowser_image_browse_url: route: route_name route_parameters: type: image
Or even overwrite the 'document' toolbar group in your application completely.
trsteel_ckeditor: class: Trsteel\CkeditorBundle\Form\Type\CkeditorType toolbar: ['document', 'clipboard', 'editing', '/', 'basicstyles', 'paragraph', 'links', '/', 'insert', 'styles', 'tools'] toolbar_groups: document: ['Source']
You can create additional toolbar groups. Just create the group and specify the items. As you can see in the above config the 'document' toolbar group has been overwritten and only shows the 'Source' icon.
Step 5: Add the editor to a form
Example form:
<?php $form = $this->createFormBuilder($post) ->add('title', 'text') ->add('content', 'ckeditor', array( 'transformers' => array('html_purifier'), 'toolbar' => array('document','basicstyles'), 'toolbar_groups' => array( 'document' => array('Source') ), 'ui_color' => '#fff', 'startup_outline_blocks' => false, 'width' => '100%', 'height' => '320', 'language' => 'en-au', 'filebrowser_image_browse_url' => array( 'url' => 'relative-url.php?type=file', ), 'filebrowser_image_browse_url' => array( 'route' => 'route_name', 'route_parameters' => array( 'type' => 'image', ), ), )) ->getForm() ;
Note: All parameters from config.yml can be overwritten in a form (excluding 'class').
Step 6: Configure data transformers
Data transformers will automatically update the html content when the form is processed.
The bundle comes with a html purifier transformer thanks to https://github.com/ezyang/htmlpurifier
If you do not want any transformers enabled you should disable them by:
- Disable globally in the config:
trsteel_ckeditor: transformers: []
- Disable them on a particular form:
<?php $form = $this->createFormBuilder($post) ->add('title', 'text') ->add('content', 'ckeditor', array( 'transformers' => array(), )) ->getForm() ;
Next Steps
meniam/ckeditor-bundle 适用场景与选型建议
meniam/ckeditor-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.98k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2015 年 12 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「bundle」 「wysiwyg」 「editor」 「CKEditor」 「symfony3」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 meniam/ckeditor-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 meniam/ckeditor-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 meniam/ckeditor-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
2lenet/EasyAdminPlusBundle
The bundle for easy using json-rpc api on your project
Provide a way to secure accesses to all routes of an symfony application.
DMS Meetup API Bundle, enables Meetup API clients in services
Bundle Symfony DaplosBundle
WYSIWYG editor for Yii2 based on Bootstrap 3
统计信息
- 总下载量: 3.98k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-12-14