rkw / rkw-basics
Basic functions
Installs: 483
Dependents: 16
Suggesters: 1
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:typo3-cms-extension
Requires
- php: >=7.4
- ext-json: *
- madj2k/t3-accelerator: ~10.4.0 || ~11.5.0 || ~12.4.0
- madj2k/t3-ajax-api: ~10.4.0 || ~11.5.0 || ~12.4.0
- madj2k/t3-core-extended: ~10.4.0 || ~11.5.0 || ~12.4.0
- ronanguilloux/isocodes: ^2.3
- typo3/cms-core: ~10.4.0
- typo3/cms-filemetadata: ~10.4.0
- dev-master
- v10.4.1-stable
- v10.4.0-stable
- v9.5.1001-stable
- v9.5.1000-stable
- v9.5.7-stable
- v9.5.6-stable
- v9.5.5-stable
- v9.5.4-stable
- v9.5.3-stable
- v9.5.2-stable
- v9.5.1-stable
- v9.5.0-stable
- v8.7.83-stable
- v8.7.82-stable
- v8.7.81-stable
- v8.7.80-stable
- v8.7.79-stable
- v8.7.78-stable
- v8.7.77-stable
- v8.7.76-stable
- v8.7.75-stable
- v8.7.74-stable
- v8.7.73-stable
- v8.7.72-stable
- v8.7.71-stable
- v8.7.70-stable
- v8.7.69-stable
- v8.7.68-stable
- v8.7.67-stable
- v8.7.66-stable
- v8.7.65-stable
- v8.7.64-stable
- v8.7.63-stable
- v8.7.62-stable
- v8.7.61-stable
- v8.7.60-stable
- v8.7.59-stable
- v8.7.58-stable
- v8.7.57-stable
- v8.7.56-stable
- v8.7.55-stable
- v8.7.54-stable
- v8.7.53-stable
- v8.7.52-stable
- v8.7.51-stable
- v8.7.50-stable
- v8.7.38-stable
- v8.7.37-stable
- v8.7.36-stable
- v8.7.35-stable
- v8.7.34-stable
- v8.7.33-stable
- v8.7.32
- v8.7.31-stable
- v8.7.30-stable
- v8.7.29-stable
- v8.7.28-stable
- v8.7.27-stable
- v8.7.26-stable
- v8.7.25-stable
- v8.7.24-stable
- v8.7.23-stable
- v8.7.22-stable
- v8.7.21-stable
- v8.7.20-stable
- v8.7.19-stable
- v8.7.18-stable
- v8.7.17-stable
- v8.7.16-stable
- v8.7.15-stable
- v8.7.15-beta
- v8.7.14-stable
- v8.7.13-stable
- v8.7.12-stable
- v8.7.11-stable
- v8.7.10-stable
- v8.7.9-stable
- v8.7.8-stable
- v8.7.7-stable
- v8.7.6-stable
- v8.7.5-stable
- v8.7.4-stable
- v8.7.3-stable
- v8.7.1-beta
- v8.7.0-beta
- v7.6.14-stable
- v7.6.13-stable
- v7.6.12-stable
- dev-development
- dev-feature/migratePagesToNews
- dev-master9.5
- dev-feature/upgrade9.5
- dev-master8.7
This package is auto-updated.
Last update: 2024-10-27 10:58:10 UTC
README
1. Features
Detailed description coming soon...
2. Breaking Changes
In version >= 8.7.20
-
Moved field tx_rkwbasics_teaser_image to resources-tab in page properties. Please adapt your permission settings in BE accordingly.
-
Removed field tx_rkwbasics_teaser_text. Use the UpdateWizard via InstallTool to migrate existing contents to the abstract field.
-
Removed field tx_rkwbasics_article_video. Use the UpdateWizard via InstallTool to migrate existing contents to the media field. Linked YouTube links will be automatically migrated to ResourceFiles.
-
Removed field tx_rkwbasics_infomation. This field is removed without replacement.
3. Update to v9.5
- Execute this via database BEFORE doing any updates on the database:
RENAME TABLE `tx_rkwbasics_domain_model_mediasources` TO `tx_coreextended_domain_model_mediasources`;
- Execute this via database BEFORE removing unused fields:
UPDATE pages SET tx_accelerator_proxy_caching = tx_rkwbasics_proxy_caching;
UPDATE pages SET tx_coreextended_alternative_title = tx_rkwbasics_alternative_title;
UPDATE pages SET tx_coreextended_fe_layout_next_level = tx_rkwbasics_fe_layout_next_level;
UPDATE pages SET no_index = tx_rkwbasics_no_index;
UPDATE pages SET no_follow = tx_rkwbasics_no_follow;
UPDATE pages SET tx_coreextended_preview_image = tx_rkwbasics_teaser_image;
UPDATE pages SET tx_coreextended_file = tx_rkwbasics_file;
UPDATE pages SET tx_coreextended_cover = tx_rkwbasics_cover;
UPDATE pages SET tx_coreextended_images_no_copyright = tx_rkwbasics_images_no_copyright;
UPDATE sys_file_reference SET fieldname = 'txCoreextendedPreviewImage' WHERE fieldname = 'txRkwbasicsTeaserImage';
UPDATE sys_file_reference SET fieldname = 'txCoreextendedFile' WHERE fieldname = 'txRkwbasicsFile';
UPDATE sys_file_reference SET fieldname = 'txCoreextendedCover' WHERE fieldname = 'txRkwbasicsCover';
UPDATE sys_file_metadata SET tx_coreextended_source = tx_rkwbasics_source;
UPDATE sys_file_metadata SET tx_coreextended_publisher = tx_rkwbasics_publisher;
UPDATE tt_content SET list_type = "coreextended_mediasources" WHERE list_type = "rkwbasics_rkwmediasources";