update documentation

This commit is contained in:
Daniel Seifert 2023-05-04 11:53:24 +02:00
parent 8d3d7dc446
commit 606d34a04c
Signed by: DanielS
GPG Key ID: 8A7C4C6ED1915C6F
2 changed files with 7 additions and 11 deletions

View File

@ -1,22 +1,18 @@
# O3-Shop TinyMCE WYSIWYG Editor # O3-Shop TinyMCE WYSIWYG Editor
This module integrates the [TinyMCE WYSIWYG editor](https://www.tiny.cloud/tinymce/) in the O3-Shop backend. This module integrates the [TinyMCE WYSIWYG editor](https://www.tiny.cloud/tinymce/) in the OXID shop backend.
## Usage ## Usage
This assumes you have O3-Shop (at least the `v1.2.0` compilation) up and running.
### Install ### Install
The TinyMCE Editor module is already included in the O3-Shop `v1.2.0` compilation.
Module can be installed manually, by using composer: Module can be installed manually, by using composer:
```bash ```bash
$ composer require o3-shop/tinymce-editor $ composer require d3/tinymce-editor
$ vendor/bin/oe-console oe:module:install source/modules/o3-shop/tinymce-editor $ vendor/bin/oe-console oe:module:install source/modules/o3-shop/tinymce-editor
``` ```
After requiring the module, you need to activate it, either via O3-Shop admin or CLI. After requiring the module, you need to activate it, either via OXID shop admin or CLI.
Navigate to shop folder and execute the following: Navigate to shop folder and execute the following:
```bash ```bash
@ -47,8 +43,8 @@ GPLv3, see [LICENSE file](LICENSE).
## Credits ## Credits
the original module was created by Marat Bedoev, bestlife AG <oxid@bestlife.ag> - O3-Shop.com
and published under the GPL v3 licence - the original module was created by Marat Bedoev, bestlife AG <oxid@bestlife.ag> and published under the GPL v3 licence
## Further licenses ## Further licenses

View File

@ -27,10 +27,10 @@ $sMetadataVersion = '2.1';
$aModule = [ $aModule = [
'id' => 'o3-tinymce-editor', 'id' => 'o3-tinymce-editor',
'title' => 'TinyMCE Editor', 'title' => 'TinyMCE Editor',
'description' => 'TinyMCE 6 integration for O3-Shop', 'description' => 'TinyMCE 6 integration for O3-Shop, ported to OXID eShop',
'thumbnail' => 'logo.png', 'thumbnail' => 'logo.png',
'version' => '1.0.0', 'version' => '1.0.0',
'author' => 'O3-Shop, Marat Bedoev', 'author' => 'D3 Data Development, O3-Shop, Marat Bedoev',
'url' => 'https://www.o3-shop.com/', 'url' => 'https://www.o3-shop.com/',
'extend' => [ 'extend' => [
OxidEsales\Eshop\Core\ViewConfig::class => O3\TinyMCE\Application\Core\ViewConfig::class, OxidEsales\Eshop\Core\ViewConfig::class => O3\TinyMCE\Application\Core\ViewConfig::class,