Radio Station lets you build and manage a Show Schedule for a radio station or Internet broadcaster's WordPress website.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
3,325
14 issue groups
Security
1,096
8 issue groups
I18n
79
3 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$args".2,576
- Category
- Maintainability
- Occurrences
- 2,576
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$$args".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" <a href='{$skip_url}' class='button button-small button-secondary'>{$use_plugin_anonymously_text}</a>"'.550
- Category
- Security
- Occurrences
- 550
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" <a href='{$skip_url}' class='button button-small button-secondary'>{$use_plugin_anonymously_text}</a>"'.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.246
- Category
- Security
- Occurrences
- 246
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityerror log print rprint_r() found. Debug code should not normally be used in production.164
- Category
- Maintainability
- Occurrences
- 164
- Severity
- warning
Sample message
print_r() found. Debug code should not normally be used in production.
ERRORMaintainabilitywp function not compatible with requires wpFunction "excerpt_remove_blocks()" requires WordPress 5.0.0, but your plugin minimum supported version is WordPress 3.3.1.157
- Category
- Maintainability
- Occurrences
- 157
- Severity
- error
Sample message
Function "excerpt_remove_blocks()" requires WordPress 5.0.0, but your plugin minimum supported version is WordPress 3.3.1.
WARNINGSecurityRequest data is not unslashed$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar147
- Category
- Security
- Occurrences
- 147
- Severity
- warning
Sample message
$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_fs_text".112
- Category
- Maintainability
- Occurrences
- 112
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_fs_text".
WARNINGMaintainabilityDynamic hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$args['namespace'] . '_add_settings'".67
- Category
- Maintainability
- Occurrences
- 67
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$args['namespace'] . '_add_settings'".
WARNINGMaintainabilityNon-prefixed classClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "DJ_Upcoming_Widget".48
- Category
- Maintainability
- Occurrences
- 48
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "DJ_Upcoming_Widget".
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.44
- Category
- Maintainability
- Occurrences
- 44
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
Show 15 moreShow less
WARNINGMaintainabilityNo Caching43
- Category
- Maintainability
- Occurrences
- 43
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORI18nMissing Translators Comment39
- Category
- I18n
- Occurrences
- 39
- 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.
ERRORSecuritySQL query is not prepared38
- Category
- Security
- Occurrences
- 38
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $overridequery
WARNINGSecurityInput is not validated36
- Category
- Security
- Occurrences
- 36
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['email']. Check that the array index exists before using it.
ERRORSecurityDatabase parameter is not escaped32
- Category
- Security
- Occurrences
- 32
- Severity
- error
Sample message
Unescaped parameter $overridequery used in $wpdb->get_results()\n$overridequery assigned unsafely at line 5461.
WARNINGSecurityMissing nonce verification32
- Category
- Security
- Occurrences
- 32
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNon-prefixed constant27
- Category
- Maintainability
- Occurrences
- 27
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "FS_API__ADDRESS".
ERRORMaintainabilityMissing direct file access protection27
- Category
- Maintainability
- Occurrences
- 27
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORMaintainabilitydate date26
- Category
- Maintainability
- Occurrences
- 26
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORI18nMissing Arg Domain21
- Category
- I18n
- Occurrences
- 21
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORI18nText Domain Mismatch19
- Category
- I18n
- Occurrences
- 19
- Severity
- error
Sample message
Mismatched text domain. Expected 'radio-station' but got ' radio-station'.
WARNINGMaintainabilityslow db query meta query15
- Category
- Maintainability
- Occurrences
- 15
- Severity
- warning
Sample message
Detected usage of meta_query, possible slow query.
WARNINGSecurityInput is not sanitized15
- Category
- Security
- Occurrences
- 15
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['date']
WARNINGMaintainabilityNon-prefixed hook name12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "deprecated_function_trigger_error".
WARNINGMaintainabilityslow db query tax query7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Detected usage of tax_query, possible slow query.
External Connections
Potential connections found in static code analysis.
Outbound calls
276
External assets
2
Incoming endpoints
22
Notable Domains
Platform / Reference Domains
External Asset Domains
No external asset domains detected.
Incoming Endpoints
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
Admin AJAX endpoints14
admin_post
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
2 more hidden
Score History
First score snapshot
v2.7.0
23
Latest
- Findings
- 4,545
- Errors
- 930
- Warnings
- 3,615
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 23 | 4,545 | 930 | 3,615 | v2.7.0 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.