Skip to content
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

End of Support Plugin for Joomla 4.4 #40565

Merged
merged 37 commits into from
May 24, 2023
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
69d37d5
End of Support Plugin for Joomla 4.4
mfleeson May 9, 2023
0619e90
Update mysql/base.sql - missing ,
mfleeson May 9, 2023
4d68d19
Update plugins/quickicon/eos/src/Extension/Eos.php
mfleeson May 9, 2023
bd188b2
Update plugins/quickicon/eos/src/Extension/Eos.php
mfleeson May 9, 2023
5942fbf
Update plugins/quickicon/eos/src/Extension/Eos.php
mfleeson May 9, 2023
911dc51
Update plugins/quickicon/eos/src/Extension/Eos.php
mfleeson May 9, 2023
c3b0267
Update plugins/quickicon/eos/src/Extension/Eos.php
mfleeson May 9, 2023
b8cc075
Merge branch 'joomla:4.3-dev' into End-of-Support-Plugin-for-Joomla-4.4
mfleeson May 10, 2023
b18a482
Update plugins/quickicon/eos/services/provider.php
mfleeson May 10, 2023
d1596b3
Update plugins/quickicon/eos/services/provider.php
mfleeson May 10, 2023
6bc2695
All requested changes made. Lets see what happens!
mfleeson May 10, 2023
ed32c90
Merge branch '4.4-dev' into End-of-Support-Plugin-for-Joomla-4.4
laoneo May 10, 2023
c07625a
Merge branch 'End-of-Support-Plugin-for-Joomla-4.4' of https://github…
mfleeson May 10, 2023
cef9935
Removed __construct, followed Dimitris and JSanders suggestions
mfleeson May 10, 2023
5781472
PHPCs fix again
mfleeson May 10, 2023
9235085
Update Eos.php
dgrammatiko May 10, 2023
5e0633d
Update provider.php
dgrammatiko May 10, 2023
22052e8
Merge pull request #2 from mfleeson/dgrammatiko-patch-2
mfleeson May 10, 2023
a6109b2
Update plugins/quickicon/eos/src/Extension/Eos.php
mfleeson May 10, 2023
0483e7b
Update plugins/quickicon/eos/services/provider.php
mfleeson May 11, 2023
9a25f99
Update provider.php
mfleeson May 11, 2023
fba1e20
Update plugins/quickicon/eos/src/Extension/Eos.php
mfleeson May 11, 2023
fe52b52
Merge branch '4.4-dev' into End-of-Support-Plugin-for-Joomla-4.4
mfleeson May 11, 2023
762db84
Merge branch '4.4-dev' into End-of-Support-Plugin-for-Joomla-4.4
mfleeson May 12, 2023
5f894ca
Update to all files to get almost clean PR. Do not Review this one, w…
mfleeson May 13, 2023
08b09d3
Ready for checking.
mfleeson May 13, 2023
290db0a
Updating GetMessageInfo in Eos to correctly just return an array
mfleeson May 13, 2023
cc73198
Changing Const from Public to Private
mfleeson May 13, 2023
4e9e778
Merge branch '4.4-dev' into End-of-Support-Plugin-for-Joomla-4.4
richard67 May 14, 2023
03036f2
Updates to set language to only load when needed. Fix to allow building
mfleeson May 14, 2023
db3e28f
Merge branch 'End-of-Support-Plugin-for-Joomla-4.4' of https://github…
mfleeson May 14, 2023
99aa6f2
Update stats-message.es6.js
mfleeson May 14, 2023
9068371
Update stats-message.es6.js
mfleeson May 14, 2023
42131ee
Merge branch '4.4-dev' into End-of-Support-Plugin-for-Joomla-4.4
laoneo May 15, 2023
78f1be7
Update Eos.php - set hardcoded date to 2025-10-25
MacJoom May 24, 2023
f4605b1
Merge branch '4.4-dev' into End-of-Support-Plugin-for-Joomla-4.4
MacJoom May 24, 2023
e06900b
Update stats-message.es6.js - revert changes
MacJoom May 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Joomla = window.Joomla || {};
try {
const json = JSON.parse(response);
if (json && json.html) {
messageContainer.insertAdjacentHTML('afterbegin', Joomla.sanitizeHtml(json.html, allowed));
messageContainer.insertAdjacentHTML('beforeend', Joomla.sanitizeHtml(json.html, allowed));
laoneo marked this conversation as resolved.
Show resolved Hide resolved
messageContainer.querySelector('.js-pstats-alert').classList.remove('hidden');
initStatsEvents(getJson);
}
Expand Down