-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe4c192
commit b31ae8f
Showing
18 changed files
with
454 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
<?php | ||
|
||
return [ | ||
/* | ||
|-------------------------------------------------------------------------- | ||
| Profiles | ||
|-------------------------------------------------------------------------- | ||
| | ||
| You can add as many as you want of profiles to use it in your application. | ||
| | ||
*/ | ||
|
||
'profiles' => [ | ||
|
||
'default' => [ | ||
'plugins' => 'advlist autoresize codesample directionality emoticons fullscreen hr image imagetools link lists media table toc wordcount code', | ||
'toolbar' => 'undo redo removeformat | formatselect fontsizeselect | bold italic | rtl ltr | alignjustify alignright aligncenter alignleft | numlist bullist | forecolor backcolor | blockquote table hr | image link code | fullscreen', | ||
'upload_directory' => 'tinyeditor', | ||
], | ||
|
||
'simple' => [ | ||
'plugins' => 'autoresize directionality emoticons link wordcount', | ||
'toolbar' => 'removeformat | bold italic | rtl ltr | link emoticons', | ||
'upload_directory' => null, | ||
], | ||
|
||
'template' => [ | ||
'plugins' => 'autoresize template', | ||
'toolbar' => 'template', | ||
'upload_directory' => null, | ||
], | ||
/* | ||
|-------------------------------------------------------------------------- | ||
| Custom Configs | ||
|-------------------------------------------------------------------------- | ||
| | ||
| If you want to add custom configurations to directly tinymce | ||
| You can use custom_configs key as an array | ||
| | ||
*/ | ||
|
||
/* | ||
'default' => [ | ||
'plugins' => 'advlist autoresize codesample directionality emoticons fullscreen hr image imagetools link lists media table toc wordcount', | ||
'toolbar' => 'undo redo removeformat | formatselect fontsizeselect | bold italic | rtl ltr | alignjustify alignright aligncenter alignleft | numlist bullist | forecolor backcolor | blockquote table toc hr | image link media codesample emoticons | wordcount fullscreen', | ||
'custom_configs' => [ | ||
'allow_html_in_named_anchor' => true, | ||
'link_default_target' => '_blank', | ||
'codesample_global_prismjs' => true, | ||
'image_advtab' => true, | ||
'image_class_list' => [ | ||
[ | ||
'title' => 'None', | ||
'value' => '', | ||
], | ||
[ | ||
'title' => 'Fluid', | ||
'value' => 'img-fluid', | ||
], | ||
], | ||
] | ||
], | ||
*/ | ||
|
||
], | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Templates | ||
|-------------------------------------------------------------------------- | ||
| | ||
| You can add as many as you want of templates to use it in your application. | ||
| | ||
| https://www.tiny.cloud/docs/plugins/opensource/template/#templates | ||
| | ||
| ex: TinyEditor::make('content')->profiles('template')->template('example') | ||
*/ | ||
|
||
'templates' => [ | ||
|
||
'example' => [ | ||
// content | ||
['title' => 'Some title 1', 'description' => 'Some desc 1', 'content' => 'My content'], | ||
// url | ||
['title' => 'Some title 2', 'description' => 'Some desc 2', 'url' => 'http://localhost'], | ||
], | ||
|
||
], | ||
]; |
Submodule livewire-page-group
updated
from 584c8a to 0f57f8
Oops, something went wrong.