Build your amazing school calendar in minutes using WP School Calendar. Perfect for your school and education website.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
1,534
12 issue groups
Security
1,119
11 issue groups
I18n
410
2 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_addon_ids".1,087
- Category
- Maintainability
- Occurrences
- 1,087
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_addon_ids".
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>"'.768
- Category
- Security
- Occurrences
- 768
- 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>"'.
ERRORI18nText Domain MismatchMismatched text domain. Expected 'wp-school-calendar-lite' but got 'wp-school-calendar'.383
- Category
- I18n
- Occurrences
- 383
- Severity
- error
Sample message
Mismatched text domain. Expected 'wp-school-calendar-lite' but got 'wp-school-calendar'.
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_fs_text".99
- Category
- Maintainability
- Occurrences
- 99
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_fs_text".
WARNINGMaintainabilityNon-prefixed constantGlobal constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "FS_API__ADDRESS".93
- Category
- Maintainability
- Occurrences
- 93
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "FS_API__ADDRESS".
WARNINGMaintainabilityNon-prefixed classClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "FS_Admin_Menu_Manager".67
- Category
- Maintainability
- Occurrences
- 67
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "FS_Admin_Menu_Manager".
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.63
- Category
- Maintainability
- Occurrences
- 63
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGSecurityRequest data is not unslashed$_GET['cat_id'] not unslashed before sanitization. Use wp_unslash() or similar63
- Category
- Security
- Occurrences
- 63
- Severity
- warning
Sample message
$_GET['cat_id'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().62
- Category
- Maintainability
- Occurrences
- 62
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORSecuritySQL query is not preparedUse placeholders and $wpdb->prepare(); found $args60
- Category
- Security
- Occurrences
- 60
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $args
Show 15 moreShow less
ERRORSecurityDatabase parameter is not escaped58
- Category
- Security
- Occurrences
- 58
- Severity
- error
Sample message
Unescaped parameter $args used in $wpdb->get_results()\n$args assigned unsafely at line 222.
WARNINGSecurityInput is not sanitized57
- Category
- Security
- Occurrences
- 57
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['cat_id']
WARNINGSecurityInput is not validated57
- Category
- Security
- Occurrences
- 57
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['cat_id']. Check that the array index exists before using it.
ERRORMaintainabilitydate date28
- Category
- Maintainability
- Occurrences
- 28
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORI18nMissing Translators Comment27
- Category
- I18n
- Occurrences
- 27
- 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 recommended23
- Category
- Security
- Occurrences
- 23
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityMissing Version16
- Category
- Maintainability
- Occurrences
- 16
- Severity
- warning
Sample message
Resource version not set in call to wp_enqueue_script(). This means new versions of the script may not always be loaded due to browser caching.
ERRORSecurityUnsafe printing function13
- Category
- Security
- Occurrences
- 13
- Severity
- error
Sample message
All output should be run through an escaping function (like echo esc_html_x() or echo esc_attr_x()), found '_ex'.
WARNINGSecuritywp redirect wp redirect9
- Category
- Security
- Occurrences
- 9
- Severity
- warning
Sample message
wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed.
ERRORMaintainabilityNo Explicit Version9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- error
Sample message
Version parameter is not explicitly set or has been set to an equivalent of "false" for wp_register_script; This means that the WordPress core version will be used which is not recommended for plugin or theme development.
ERRORSecurityException output is not escaped7
- Category
- Security
- Occurrences
- 7
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$message'.
WARNINGSecurityMissing nonce verification4
- Category
- Security
- Occurrences
- 4
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityMissing direct file access protection4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityNon-prefixed hook name3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "fs_plugins_api".
WARNINGMaintainabilitytrademarked term3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
The plugin name includes a restricted term. Your chosen plugin name - "WP School Calendar" - contains the restricted term "wp" which cannot be used at all in your plugin name.
External Connections
Potential connections found in static code analysis.
Outbound calls
194
External assets
2
Incoming endpoints
6
Notable Domains
Platform / Reference Domains
External Asset Domains
No external asset domains detected.
Incoming Endpoints
No public endpoints detected.
Admin AJAX endpoints6
admin_post
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
Score History
First score snapshot
v3.8.22
24
Latest
- Findings
- 3,081
- Errors
- 1,361
- Warnings
- 1,720
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 3,081 | 1,361 | 1,720 | v3.8.22 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.