https://github.com/code-rhapsodie/ezautosave-bundle
https://github.com/code-rhapsodie/ezautosave-bundle
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/code-rhapsodie/ezautosave-bundle
- Owner: code-rhapsodie
- License: mit
- Created: 2021-10-05T07:37:14.000Z (over 4 years ago)
- Default Branch: 2.0
- Last Pushed: 2021-10-06T12:15:26.000Z (over 4 years ago)
- Last Synced: 2024-12-10T04:32:05.867Z (over 1 year ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Code Rhapsodie Ez Autosave Bundle
This bundle adds a simple autosave feature for eZPlatform.
Version 1 is for eZPlatform 2. Version 2 is for eZPlatform 3 (Ibexa Content).
Client-side only, browser storage is used to save content state. No JS librairies required.
# Features
While creating or editing a content, its fields values will be regularly saved.
To load saved values, simply create a new content of the same content type, or edit the same content, and you will be asked if you want to restore saved values.
## Installation
### Add the dependency
To install this bundle, run this command :
```shell script
$ composer require code-rhapsodie/ezautosave-bundle
```
### Register the bundle
Add `CodeRhapsodie\EzAutosaveBundle\CodeRhapsodieEzAutosaveBundle::class => ['all' => true],
` in the `config/bundles.php` file, just before the `EzPlatformAdminUiBundle` line.
Like this:
```php
['all' => true],
EzSystems\EzPlatformAdminUiBundle\EzPlatformAdminUiBundle::class => ['all' => true],
// ...
];
```
# Issues and feature requests
Please report issues and request features at https://github.com/code-rhapsodie/ezautosave-bundle/issues.
# Contributing
Contributions are very welcome. Please see [CONTRIBUTING.md](CONTRIBUTING.md) for
details. Thanks to [everyone who has contributed](https://github.com/code-rhapsodie/ezautosave-bundle/graphs/contributors)
already.
# License
This package is licensed under the [MIT license](LICENSE).