1 | <?php |
||
21 | class CKEditorExtension extends AbstractExtension implements CKEditorRendererInterface |
||
22 | { |
||
23 | /** |
||
24 | * @var CKEditorRendererInterface |
||
25 | */ |
||
26 | private $renderer; |
||
27 | |||
28 | /** |
||
29 | * @param CKEditorRendererInterface $renderer |
||
30 | */ |
||
31 | public function __construct(CKEditorRendererInterface $renderer) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function getFunctions() |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public function renderBasePath($basePath) |
||
61 | |||
62 | /** |
||
63 | * {@inheritdoc} |
||
64 | */ |
||
65 | public function renderJsPath($jsPath) |
||
69 | |||
70 | /** |
||
71 | * {@inheritdoc} |
||
72 | */ |
||
73 | public function renderWidget($id, array $config, array $options = []) |
||
77 | |||
78 | /** |
||
79 | * {@inheritdoc} |
||
80 | */ |
||
81 | public function renderDestroy($id) |
||
85 | |||
86 | /** |
||
87 | * {@inheritdoc} |
||
88 | */ |
||
89 | public function renderPlugin($name, array $plugin) |
||
93 | |||
94 | /** |
||
95 | * {@inheritdoc} |
||
96 | */ |
||
97 | public function renderStylesSet($name, array $stylesSet) |
||
101 | |||
102 | /** |
||
103 | * {@inheritdoc} |
||
104 | */ |
||
105 | public function renderTemplate($name, array $template) |
||
109 | |||
110 | /** |
||
111 | * {@inheritdoc} |
||
112 | */ |
||
113 | public function getName() |
||
117 | } |
||
118 |