templates.php 428 B

12345678910111213141516
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. use Chamilo\CoreBundle\Component\Editor\CkEditor\CkEditor;
  4. require_once __DIR__.'/../../global.inc.php';
  5. $template = new Template();
  6. $editor = new CkEditor();
  7. $templates = $editor->simpleFormatTemplates();
  8. $template->assign('templates', $templates);
  9. header('Content-type: application/x-javascript');
  10. $template->display('default/javascript/editor/ckeditor/templates.tpl');