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

UI Framework Tab Fatal error: Class 'Piwik_DataTable' not found in /home/nite/public_html/piw/plugins/ExampleUI/API.php on line 77 #2545

Closed
anonymous-matomo-user opened this issue Jul 6, 2011 · 1 comment
Labels
Bug For errors / faults / flaws / inconsistencies etc. Major Indicates the severity or impact or benefit of an issue is much higher than normal but not critical. wontfix If you can reproduce this issue, please reopen the issue or create a new one describing it.

Comments

@anonymous-matomo-user
Copy link

See reportings in http://forum.piwik.org/read.php?2,78979

When clicking on UI Framework Tab Fatal error: Class 'Piwik_DataTable' not found in /home/piwik/public_html/plugins/ExampleUI/API.php on line 77

The class 'Piwik_DataTable' that method 'getTemperatures' is trying to use doesnt appear to be loaded.

By adding class 'Piwik_DataTable' to '/plugins/ExampleUI/API.php' allows the method 'getTemperatures' to use the class and then the Framework UI page works.

Adding the following code before trying to use the class fixes the issue as a temporary solution:

if (!class_exists('Piwik_DataTable', false))
{
include(PIWIK_INCLUDE_PATH .'/core/DataTable.php');
}

Patch attached

I think some sort of check for dependent classes should be introduced and should fail during automated tests.

PHP 5.3
Piwik 1.5.1

Keywords: class method doesnt exist

@anonymous-matomo-user
Copy link
Author

Attachment:
API.php.patch

This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug For errors / faults / flaws / inconsistencies etc. Major Indicates the severity or impact or benefit of an issue is much higher than normal but not critical. wontfix If you can reproduce this issue, please reopen the issue or create a new one describing it.
Projects
None yet
Development

No branches or pull requests

2 participants