Display prayer time in any screen, in any language and many more.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
1,727
16 issue groups
Security
970
8 issue groups
I18n
5
1 issue group
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_addon_ids".1,239
- Category
- Maintainability
- Occurrences
- 1,239
- 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>"'.697
- Category
- Security
- Occurrences
- 697
- 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>"'.
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_fs_text".104
- Category
- Maintainability
- Occurrences
- 104
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_fs_text".
WARNINGSecurityRequest data is not unslashed$_POST['activateAdhan'] not unslashed before sanitization. Use wp_unslash() or similar102
- Category
- Security
- Occurrences
- 102
- Severity
- warning
Sample message
$_POST['activateAdhan'] not unslashed before sanitization. Use wp_unslash() or similar
ERRORMaintainabilitydate datedate() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.93
- Category
- Maintainability
- Occurrences
- 93
- 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: "AdminMenu".92
- Category
- Maintainability
- Occurrences
- 92
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "AdminMenu".
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_POST['asr-delay']. Check that the array index exists before using it.81
- Category
- Security
- Occurrences
- 81
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST['asr-delay']. Check that the array index exists before using it.
ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;45
- Category
- Maintainability
- Occurrences
- 45
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORSecuritySQL query is not preparedUse placeholders and $wpdb->prepare(); found $createIfNotUpdate42
- Category
- Security
- Occurrences
- 42
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $createIfNotUpdate
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.40
- Category
- Maintainability
- Occurrences
- 40
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
Show 15 moreShow less
WARNINGMaintainabilityNo Caching39
- Category
- Maintainability
- Occurrences
- 39
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORSecurityDatabase parameter is not escaped29
- Category
- Security
- Occurrences
- 29
- Severity
- error
Sample message
Unescaped parameter $createIfNotUpdate used in $wpdb->query()\n$createIfNotUpdate assigned unsafely at line 292.
WARNINGMaintainabilityNon-prefixed constant28
- Category
- Maintainability
- Occurrences
- 28
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "DPT_PLUGIN_FILE".
WARNINGMaintainabilityNot In Footer12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- warning
Sample message
In footer ($in_footer) is not set explicitly wp_enqueue_script; It is recommended to load scripts in the footer. Please set this value to `true` to load it in the footer, or explicitly `false` if it should be loaded in the header.
ERRORMaintainabilitywp function not compatible with requires wp12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- error
Sample message
Function "get_network()" requires WordPress 4.6.0, but your plugin minimum supported version is WordPress 4.5.0.
ERRORSecurityException output is not escaped8
- Category
- Security
- Occurrences
- 8
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$error'.
WARNINGSecurityMissing nonce verification8
- Category
- Security
- Occurrences
- 8
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityerror log error log5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
error_log() found. Debug code should not normally be used in production.
ERRORMaintainabilityfile system operations fopen5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().
ERRORI18nText Domain Mismatch5
- Category
- I18n
- Occurrences
- 5
- Severity
- error
Sample message
Mismatched text domain. Expected 'daily-prayer-time-for-mosques' but got 'dpt-support'.
WARNINGMaintainabilityMissing Version4
- Category
- Maintainability
- Occurrences
- 4
- 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.
WARNINGMaintainabilitySchema Change3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
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: "dpt_fs_loaded".
WARNINGMaintainabilityerror log print r3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
print_r() found. Debug code should not normally be used in production.
WARNINGSecurityNonce verification recommended3
- Category
- Security
- Occurrences
- 3
- Severity
- warning
Sample message
Processing form data without nonce verification.
External Connections
Potential connections found in static code analysis.
Outbound calls
236
External assets
10
Incoming endpoints
6
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
wp_ajax
wp_ajax
Admin AJAX endpoints4
admin_post
wp_ajax
wp_ajax
wp_ajax
Score History
First score snapshot
v2026.05.20
21
Latest
- Findings
- 2,727
- Errors
- 947
- Warnings
- 1,780
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 21 | 2,727 | 947 | 1,780 | v2026.05.20 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.