-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[5.4] Backward Compatibility Module #46424
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
alikon
wants to merge
21
commits into
joomla:5.4-dev
Choose a base branch
from
alikon:mod-backword
base: 5.4-dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+258
−62
Open
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
7556838
Backward Compatibility Module
alikon a7d3f52
typo
alikon 24c86dd
cs
alikon 9c732bf
Merge branch '5.4-dev' into mod-backword
alikon 2ce877a
Update sequence value for modules to 111
alikon 0f9af3e
phpstan
alikon 033e41c
Update administrator/language/en-GB/mod_backward.ini
alikon 311fdc2
Update administrator/language/en-GB/mod_backward.sys.ini
alikon 06096eb
Update administrator/modules/mod_backward/services/provider.php
alikon 504f605
Update administrator/modules/mod_backward/src/Dispatcher/Dispatcher.php
alikon d9ba4a9
Update administrator/modules/mod_backward/src/Dispatcher/Dispatcher.php
alikon dead98a
Update administrator/modules/mod_backward/mod_backward.xml
alikon 66c48b8
Add backward compatibility module and extension entries
alikon d057b8d
Add backward compatibility module and extension entries
alikon f6737e6
Merge branch '5.4-dev' into mod-backword
alikon 296a5ef
insert one time only
alikon 4175e5f
insert one time only
alikon 3bb2c75
Update administrator/components/com_admin/sql/updates/mysql/5.4.0.202…
alikon acf9b0c
same order
alikon 6eb4b56
same as mysql
alikon a8ab96d
Merge branch '5.4-dev' into mod-backword
alikon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
14 changes: 9 additions & 5 deletions
14
administrator/components/com_admin/sql/updates/mysql/5.4.0.2025-11.08.sql
This file contains hidden or 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 |
|---|---|---|
| @@ -1,7 +1,11 @@ | ||
| INSERT INTO `#__modules` (`title`, `note`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `publish_up`, `publish_down`, `published`, `module`, `access`, `showtitle`, `params`, `client_id`, `language`) VALUES | ||
| ('Backward Compatibility', '', '', 1, 'status', 0, NULL, NULL, NULL, 1, 'mod_backward', 1, 1, '', 1, '*'); | ||
| INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) | ||
| SELECT 0, 'mod_backward', 'module', 'mod_backward', '', 1, 1, 1, 0, 1, '', '{}', '', 0, 0 | ||
| WHERE NOT EXISTS (SELECT * FROM `a#__extensions` e WHERE e.`type` = 'module' AND e.`element` = 'mod_backward' AND e.`name` = 'mod_backward' AND e.`client_id` = 1); | ||
|
|
||
| INSERT INTO `#__modules_menu` (`moduleid`, `menuid`) VALUES (LAST_INSERT_ID(), 0); | ||
| INSERT INTO `#__modules` (`title`, `note`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `publish_up`, `publish_down`, `published`, `module`, `access`, `showtitle`, `params`, `client_id`, `language`) | ||
| SELECT 'Backward Compatibility', '', '', 1, 'status', 0, NULL, NULL, NULL, 1, 'mod_backward', 1, 1, '', 1, '*' | ||
| WHERE NOT EXISTS (SELECT * FROM `#__modules` m WHERE m.`title` = 'Backward Compatibility' AND m.`position` = 'status' AND m.`module` = 'mod_backward' AND m.`client_id` = 1); | ||
|
|
||
| INSERT INTO `#__extensions` (`package_id`, `name`, `type`, `element`, `folder`, `client_id`, `enabled`, `access`, `protected`, `locked`, `manifest_cache`, `params`, `custom_data`, `ordering`, `state`) VALUES | ||
| (0, 'mod_backward', 'module', 'mod_backward', '', 1, 1, 1, 0, 1, '', '{}', '', 0, 0); | ||
| INSERT INTO `#__modules_menu` (`moduleid`, `menuid`) | ||
| SELECT LAST_INSERT_ID(), 0 | ||
| WHERE NOT EXISTS (SELECT 1 FROM `#__modules_menu` WHERE `moduleid` = LAST_INSERT_ID() AND `menuid` = 0); | ||
alikon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.