Daily Prayer Time

Display prayer time in any screen, in any language and many more.

v2026.05.20mmrs151Updated Added 1k+ installs98% rating25% support resolved
21
Score
947
Errors
1,780
Warnings
+0
Change

Category Scores

Security0
Repo76
Performance100
Maintainability0

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

2,727 findings

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: &quot;_fs_text&quot;.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: &quot;_fs_text&quot;.

WARNINGSecurityRequest data is not unslashed$_POST[&#039;activateAdhan&#039;] not unslashed before sanitization. Use wp_unslash() or similar102
Category
Security
Occurrences
102
Severity
warning

Sample message

$_POST[&#039;activateAdhan&#039;] 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: &quot;AdminMenu&quot;.92
Category
Maintainability
Occurrences
92
Severity
warning

Sample message

Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: &quot;AdminMenu&quot;.

WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_POST[&#039;asr-delay&#039;]. 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[&#039;asr-delay&#039;]. 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 more
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: &quot;DPT_PLUGIN_FILE&quot;.

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: &quot;dpt_fs_loaded&quot;.

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.

57 domains

Outbound calls

236

External assets

10

Incoming endpoints

6

Notable Domains

freemius.com8 · outbound
php.net7 · outbound
donate.uwt.org4 · outbound
salafitech.net4 · outbound
aa.usno.navy.mil2 · outbound

Platform / Reference Domains

gnu.org112 · platform/reference
github.com13 · platform/reference
wordpress.org13 · platform/reference
w3.org11 · platform/reference
api.wordpress.org2 · platform/reference
make.wordpress.org2 · platform/reference
opensource.org2 · platform/reference
core.trac.wordpress.org1 · platform/reference

External Asset Domains

fonts.googleapis.com2 · asset + outbound
gmpg.org1 · asset

Incoming Endpoints

wp_ajax_nopriv_public

wp_ajax

wp_ajax_nopriv_get_monthly_timetablepublic

wp_ajax

Admin AJAX endpoints4
admin_post_fs_clone_resolutionauthenticated

admin_post

wp_ajax_fs_dismiss_notice_action_{$ajax_action_suffix}authenticated

wp_ajax

wp_ajax_fs_toggle_debug_modeauthenticated

wp_ajax

wp_ajax_get_monthly_timetableauthenticated

wp_ajax

Score History

First score snapshot

v2026.05.20

21

Latest

Findings
2,727
Errors
947
Warnings
1,780
Check
2.0.0

Relationship Map

Author, categories, issues, domains, and nearby plugins.

33 nodes

Related Plugins

Salat Times

500 active installs

39