Multi-purpose Items Rental Management System for any kind of objects. The most efficient booking solution for managing item rentals through your site.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
4,945
16 issue groups
Security
4,119
6 issue groups
I18n
199
3 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$K_PATH_CACHE".3,955
- Category
- Maintainability
- Occurrences
- 3,955
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$K_PATH_CACHE".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<link href=\"{$href}\" {$relType}=\"$relation\" "'.3,736
- Category
- Security
- Occurrences
- 3,736
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<link href=\"{$href}\" {$relType}=\"$relation\" "'.
ERRORMaintainabilitydate datedate() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.339
- Category
- Maintainability
- Occurrences
- 339
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGMaintainabilityNon-prefixed classClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "ArrayHelper".200
- Category
- Maintainability
- Occurrences
- 200
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "ArrayHelper".
ERRORSecurityException output is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"File {$fbase} not found"'.158
- Category
- Security
- Occurrences
- 158
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"File {$fbase} not found"'.
WARNINGMaintainabilityNon-prefixed constantGlobal constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "DATAMATRIXDEFS".137
- Category
- Maintainability
- Occurrences
- 137
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "DATAMATRIXDEFS".
ERRORI18nMissing Arg DomainMissing $domain parameter in function call to __().92
- Category
- I18n
- Occurrences
- 92
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
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.78
- Category
- I18n
- Occurrences
- 78
- 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.
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_FILES['backlogo']['name']75
- Category
- Security
- Occurrences
- 75
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES['backlogo']['name']
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_FILES['backlogo']['error']. Check that the array index exists before using it.64
- Category
- Security
- Occurrences
- 64
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['backlogo']['error']. Check that the array index exists before using it.
Show 15 moreShow less
WARNINGSecurityMissing nonce verification61
- Category
- Security
- Occurrences
- 61
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityunlink unlink41
- Category
- Maintainability
- Occurrences
- 41
- Severity
- error
Sample message
unlink() is discouraged. Use wp_delete_file() to delete a file.
ERRORMaintainabilityMissing direct file access protection37
- Category
- Maintainability
- Occurrences
- 37
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityDynamic hook name32
- Category
- Maintainability
- Occurrences
- 32
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$bc".
ERRORMaintainabilityfile system operations fclose31
- Category
- Maintainability
- Occurrences
- 31
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
WARNINGMaintainabilityNon-prefixed hook name30
- Category
- Maintainability
- Occurrences
- 30
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'get_supported_payments_' . $plugin".
ERRORI18nUnordered Placeholders Text29
- Category
- I18n
- Occurrences
- 29
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$s", but got "%d, %s" in '%d of %s'.
ERRORMaintainabilityNot Allowed28
- Category
- Maintainability
- Occurrences
- 28
- Severity
- error
Sample message
Use of heredoc syntax (<<<) is not allowed; use standard strings or inline HTML instead
WARNINGSecurityRequest data is not unslashed25
- Category
- Security
- Occurrences
- 25
- Severity
- warning
Sample message
$_SERVER['DOCUMENT_ROOT'] not unslashed before sanitization. Use wp_unslash() or similar
ERRORMaintainabilityfile system operations fread25
- Category
- Maintainability
- Occurrences
- 25
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fread().
ERRORMaintainabilitycurl curl setopt23
- Category
- Maintainability
- Occurrences
- 23
- Severity
- error
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
ERRORMaintainabilityrand rand19
- Category
- Maintainability
- Occurrences
- 19
- Severity
- error
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
ERRORMaintainabilitystrip tags strip tags19
- Category
- Maintainability
- Occurrences
- 19
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
ERRORMaintainabilityfile system operations fopen15
- Category
- Maintainability
- Occurrences
- 15
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().
ERRORMaintainabilityfile system operations chmod14
- Category
- Maintainability
- Occurrences
- 14
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: chmod().
External Connections
Potential connections found in static code analysis.
Outbound calls
300
External assets
0
Incoming endpoints
0
Notable Domains
Platform / Reference Domains
External Asset Domains
No external asset domains detected.
Incoming Endpoints
No public endpoints detected.
Score History
First score snapshot
v1.2.1
24
Latest
- Findings
- 9,394
- Errors
- 4,755
- Warnings
- 4,639
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 9,394 | 4,755 | 4,639 | v1.2.1 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.