Example #1
0
 /**
  * @return string
  */
 public function editorReplace()
 {
     $toolbar = new Toolbar($this->urlGenerator, $this->toolbarSet, $this->config);
     $toolbar->setLanguage($this->getLocale());
     $config = $toolbar->getConfig();
     $javascript = $this->toJavascript($config);
     $html = "<script>\n           CKEDITOR.replace('" . $this->name . "',\n               {$javascript}\n           );\n           </script>";
     return $html;
 }