Remove friendsofsymfony/ckeditor-bundle

pull/3890/head
Julio Montoya 5 years ago
parent f01cace846
commit e622023b2a
  1. 1
      composer.json
  2. 1
      config/bundles.php
  3. 5
      config/packages/fos_ckeditor.yaml
  4. 2
      src/CoreBundle/Resources/views/Layout/head.html.twig
  5. 2
      src/CoreBundle/Resources/views/Layout/layout_one_col.html.twig

@ -68,7 +68,6 @@
"endroid/qr-code": "~3.7",
"essence/essence": "~3.0",
"ezyang/htmlpurifier": "~4.13",
"friendsofsymfony/ckeditor-bundle": "^2.2",
"friendsofsymfony/jsrouting-bundle": "~2.0",
"graphp/algorithms": "~0.8",
"graphp/graphviz": "~0.2",

@ -31,7 +31,6 @@ return [
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
SymfonyCasts\Bundle\ResetPassword\SymfonyCastsResetPasswordBundle::class => ['all' => true],
FOS\CKEditorBundle\FOSCKEditorBundle::class => ['all' => true],
Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle::class => ['all' => true],
Knp\DoctrineBehaviors\DoctrineBehaviorsBundle::class => ['all' => true],
Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle::class => ['all' => true],

@ -1,5 +0,0 @@
# Read the documentation: https://symfony.com/doc/current/bundles/FOSCKEditorBundle/index.html
twig:
form_themes:
- '@FOSCKEditor/Form/ckeditor_widget.html.twig'

@ -33,7 +33,7 @@
{#<link rel="stylesheet" href="{{ url('home') ~ 'build/css/print.css' }}" media="print" />#}
{% endblock %}
{# app.js is generated using the file webpack.config.js and using yarn read /assets/README.md for more info #}
<script src="{{ url('home') ~ 'build/libs/ckeditor/ckeditor.js' }}"></script>
{#<script src="{{ url('home') ~ 'build/libs/ckeditor/ckeditor.js' }}"></script>#}
<script src="{{ url('home') ~ 'build/runtime.js' }}"></script>
<script src="{{ url('home') ~ 'build/app.js' }}"></script>
{#{{ encore_entry_script_tags('app') }}#}

@ -1,7 +1,7 @@
{% extends '@ChamiloCore/Layout/base-layout.html.twig' %}
{%- block page_content %}
{% if from_vue %}
<script src="{{ url('home') ~ 'build/libs/ckeditor/ckeditor.js' }}"></script>
{# <script src="{{ url('home') ~ 'build/libs/ckeditor/ckeditor.js' }}"></script>#}
<script src="{{ url('home') ~ 'build/runtime.js' }}"></script>
<script src="{{ url('home') ~ 'build/app.js' }}"></script>
<link rel="stylesheet" href="{{ url('home') ~ 'build/css/app.css' }}"/>

Loading…
Cancel
Save