Allow admin users to change the creation date of products, posts, and other registered models in Botble CMS.
- Botble Core 7.5.0 or higher
- PHP 8.2 or higher
- Extract the plugin to
platform/plugins/fob-creation-date - Activate the plugin in Admin > Plugins
- Configure in Settings > Others > FOB Creation Date
- Change Creation Date: Edit the
created_attimestamp of any registered model from the admin panel - Per-Model Configuration: Enable or disable the feature for specific model types via settings
- Extensible Model Registry: Other plugins can register their own models to support creation date editing
- Meta Box Integration: Appears as a sidebar meta box on edit forms for enabled models
- Multi-language Support: Translations included for 30+ languages
Once activated, a "Creation Date" meta box appears in the sidebar of edit forms for enabled models (e.g., products, posts). Click Change to open a date picker modal and set a new creation date.
Other plugins can register their models to support creation date editing:
use FriendsOfBotble\CreationDate\Facades\CreationDate;
CreationDate::registerModel(MyModel::class, 'My Model');Configure which models allow creation date changes in Settings > Others > FOB Creation Date.
See CONTRIBUTING.md
The MIT License. See License File
