Create and maintain events, including complex reoccurring patterns, venue management (with Google Maps or OpenStreetMap), calendars and customisable e …
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
I18n
659
3 issue groups
Security
547
11 issue groups
Maintainability
375
10 issue groups
Performance
12
1 issue group
ERRORI18nText Domain MismatchMismatched text domain. Expected 'event-organiser' but got 'eventorganiser'.563
- Category
- I18n
- Occurrences
- 563
- Severity
- error
Sample message
Mismatched text domain. Expected 'event-organiser' but got 'eventorganiser'.
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div id='{$id}_content' class='eo-widget-cal-wrap' data-eo-widget-cal-id='{$id}' >"'.285
- Category
- Security
- Occurrences
- 285
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<div id='{$id}_content' class='eo-widget-cal-wrap' data-eo-widget-cal-id='{$id}' >"'.
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_eo_format_datetime_range".124
- Category
- Maintainability
- Occurrences
- 124
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_eo_format_datetime_range".
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$EO_Errors".87
- Category
- Maintainability
- Occurrences
- 87
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$EO_Errors".
ERRORI18nMissing Translators CommentA function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.58
- Category
- I18n
- Occurrences
- 58
- Severity
- error
Sample message
A function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.56
- Category
- Security
- Occurrences
- 56
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.52
- Category
- Security
- Occurrences
- 52
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;43
- Category
- Maintainability
- Occurrences
- 43
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_COOKIE['eo_admin_cal_last_view']42
- Category
- Security
- Occurrences
- 42
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE['eo_admin_cal_last_view']
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.38
- Category
- Maintainability
- Occurrences
- 38
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
Show 15 moreShow less
ERRORI18nMissing Arg Domain38
- Category
- I18n
- Occurrences
- 38
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
WARNINGSecurityRequest data is not unslashed37
- Category
- Security
- Occurrences
- 37
- Severity
- warning
Sample message
$_COOKIE['eo_admin_cal_last_view'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityNo Caching33
- Category
- Maintainability
- Occurrences
- 33
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityInput is not validated30
- Category
- Security
- Occurrences
- 30
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['ics']['tmp_name']. Check that the array index exists before using it.
WARNINGMaintainabilityNon-prefixed hook name13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "add_meta_boxes_event_page_venues".
WARNINGSecurityMissing nonce verification13
- Category
- Security
- Occurrences
- 13
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNon-prefixed class12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "EO_Admin_Notice_Handler".
ERRORMaintainabilityDeprecated parameter: get_terms parameter 212
- Category
- Maintainability
- Occurrences
- 12
- Severity
- error
Sample message
The parameter "$args" at position #2 of get_terms() has been deprecated since WordPress version 4.5.0. Instead do not pass the parameter.
WARNINGPerformancePost Not In exclude12
- Category
- Performance
- Occurrences
- 12
- Severity
- warning
Sample message
Using exclusionary parameters, like exclude, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information.
ERRORSecuritySQL query is not prepared11
- Category
- Security
- Occurrences
- 11
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $delete_columns
WARNINGSecurityInterpolated SQL is not prepared8
- Category
- Security
- Occurrences
- 8
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $eventorganiser_venue_table at " SELECT venue_slug, venue_address, venue_postal, venue_country, venue_lng, venue_lat, venue_description FROM $eventorganiser_venue_table"
ERRORSecurityDatabase parameter is not escaped7
- Category
- Security
- Occurrences
- 7
- Severity
- error
Sample message
Unescaped parameter $delete_columns used in $wpdb->query()\n$delete_columns assigned unsafely at line 205.
WARNINGMaintainabilitySchema Change7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
WARNINGMaintainabilityNon-prefixed constant6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "DATETIMEOBJ".
ERRORSecurityException output is not escaped6
- Category
- Security
- Occurrences
- 6
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$duration_str'.
External Connections
Potential connections found in static code analysis.
Outbound calls
289
External assets
0
Incoming endpoints
11
Notable Domains
Platform / Reference Domains
External Asset Domains
No external asset domains detected.
Incoming Endpoints
wp_ajax
wp_ajax
wp_ajax
Admin AJAX endpoints8
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
Score History
2 score snapshots
v3.12.9
20
Latest
- Findings
- 1,648
- Errors
- 1,104
- Warnings
- 544
- Check
- 2.0.0
v3.12.8
19
Score
- Findings
- 1,650
- Errors
- 1,106
- Warnings
- 544
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 20 | 1,648 | 1,104 | 544 | v3.12.9 | 2.0.0 |
| 19 | 1,650 | 1,106 | 544 | v3.12.8 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.