-
Notifications
You must be signed in to change notification settings - Fork 14
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
Change no data page logic according to core changes #450
Conversation
e89a1c3
to
02e45a8
Compare
02e45a8
to
827fcfe
Compare
@AltamashShaikh We have completely refactored how the no data screen works in Matomo. The changes here will adjust this plugin, so it show the tab as before. The changes will be part of Matomo 5.0.0-rc3, which was not yet released. Once that was released we might need to release a new version of this plugin with the changes in that PR as well. |
return [ | ||
SiteContentDetector::class => \Piwik\DI::autowire(FakeSiteContentDetector::class) | ||
->constructorParameter('mockData', $mockData) | ||
->constructorParameter('detectedContentDetections', [Cloudflare::getId(), GoogleAnalytics3::getId()]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sgiehl Similar changes would be required in ConenctAccounts and Cloud plugin
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good and everything works as expected, left just 1 change request for translation rest all looks good
@@ -7,6 +7,9 @@ | |||
*/ | |||
namespace Piwik\Plugins\GoogleAnalyticsImporter\tests\Fixtures; | |||
|
|||
use Piwik\Plugins\SEO\Metric\Google; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sgiehl This use is required?
@AltamashShaikh applied your feedback |
Description:
With matomo-org/matomo#21029 the handling of no data page will be fully refactored. This PR includes the requires changes for this plugin to work with the new core code.
Review