File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,8 @@ $form->clang('code');
4242
4343$form->cpp('code');
4444
45+ $form->csharp('code');
46+
4547$form->java('code');
4648
4749$form->objectivec('code');
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ public function boot()
2020 Admin::booting (function () {
2121 Form::extend ('clang ' , Clang::class);
2222 Form::extend ('cpp ' , Cpp::class);
23+ Form::extend ('csharp ' , Csharp::class);
2324 Form::extend ('java ' , Java::class);
2425 Form::extend ('objectivec ' , Objectivec::class);
2526 Form::extend ('scala ' , Scala::class);
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Encore \ClikeEditor ;
4+
5+ class Csharp extends Editor
6+ {
7+ protected $ mode = 'text/x-csharp ' ;
8+ }
You can’t perform that action at this time.
0 commit comments