src/App.php line 5

Open in your IDE?
  1. <?php
  2. namespace App;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. class App extends AbstractPimcoreBundle {
  5.     public function getJsPaths() {
  6.         return [
  7.             '/build/ckeditor/config.js'
  8.         ];
  9.     }
  10.     public function getEditmodeJsPaths() {
  11.         return [
  12.             '/build/ckeditor/config.js'
  13.         ];
  14.     }
  15.     public function getCssPaths() {
  16.         return [
  17.             '/build/ckeditor.css'
  18.         ];
  19.     }
  20. }