stinger/ckeditor-filetools-bundle

Symfony2 扩展,用于集成 CKEditor 插件 File Tools

安装次数: 18,882

依赖项: 1

建议者: 0

安全: 0

星标: 1

关注者: 3

分支: 0

开放问题: 0

语言:JavaScript

类型:symfony-bundle

4.5.3 2015-12-14 15:06 UTC

This package is auto-updated.

Last update: 2024-09-07 19:11:48 UTC


README

Symfony2 扩展,用于集成 CKEditor 插件 File Tools

当前版本

FileTools v4.5.6

安装

将包添加到 composer.json 文件中

// composer.json

{
    "require": {
		// ...
        "stinger/ckeditor-filetools-bundle": "~4.5.6"
    }
}

将包添加到应用程序内核中

// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Stinger\CKEditorFileToolsBundle\StingerCKEditorFileToolsBundle(),
        // ...
    );
}

使用 Composer 下载包

$ php composer.phar update stinger/ckeditor-filetools-bundle

安装资源

假设您的服务器公共目录名为 "web",安装公共供应商资源

$ php app/console assets:install web

可选地,使用 --symlink 属性创建链接而不是资源的副本

$ php app/console assets:install --symlink web

用法

trsteel_ckeditor:
    external_plugins:
      filetools:
        path: 'bundles/stingerckeditorfiletools'

许可证

请参阅包含文件的源代码以获取许可证信息

参考

  1. https://ckeditor.npmjs.net.cn/addon/filetools
  2. https://symfony.com.cn