Issues (1210)

Security Analysis    not enabled

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

language/nederlands/apcal_constants.php (2 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3 View Code Duplication
if( defined( 'FOR_XOOPS_LANG_CHECKER' ) || ! defined( 'APCAL_CNST_LOADED' ) ) {
0 ignored issues
show
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
4
5
6
7
// Appended by Xoops Language Checker -GIJOE- in 2005-05-17 17:34:00
8
define('_APCAL_BTN_DELETE_ONE','Remove just one');
9
10
// Appended by Xoops Language Checker -GIJOE- in 2005-05-03 05:31:13
11
define('_APCAL_JS_CALENDAR','calendar-en.js');
12
define('_APCAL_JSFMT_YMDN','%d %B %Y (%A)');
13
define('_APCAL_DTFMT_MINUTE','i');
14
define('_APCAL_FMT_YMDN','%3$s %2$s %1$s %4$s');
15
define('_APCAL_FMT_DHI','%1$s %2$s:%3$s');
16
define('_APCAL_FMT_HI','%1$s:%2$s');
17
define('_APCAL_TH_TIMEZONE','Time Zone');
18
19
define( 'APCAL_CNST_LOADED' , 1 ) ;
20
21
22
// format for date()  see http://jp.php.net/date
23
define('_APCAL_DTFMT_TIME','a g:i') ;
24
25
// set your locale
26
define('_APCAL_LOCALE','nl_NL') ;
27
// format for strftime()  see http://jp.php.net/strftime
28
define('_APCAL_STRFFMT_DATE','%x') ;
29
30
define('_APCAL_FMT_MD','%2$s %1$s') ;
31
define('_APCAL_FMT_YMD','%3$s %2$s %1$s') ;
32
define('_APCAL_FMT_YMW','%3$s %2$s %1$s') ;
33
define('_APCAL_FMT_YEAR_MONTH','%2$s %1$s') ;
34
define('_APCAL_FMT_YEAR','<font size="-1">Jaar </font>%s') ;
35
36
define('_APCAL_ICON_DAILY','Dagvoorstelling') ;
37
define('_APCAL_ICON_WEEKLY','Weekvoorstelling') ;
38
define('_APCAL_ICON_MONTHLY','Maandvoorstelling') ;
39
define('_APCAL_ICON_YEARLY','Jaarvoorstelling') ;
40
41
define('_APCAL_MB_LINKTODAY','Vandaag') ;
42
define('_APCAL_MB_NOSUBJECT','(geen onderwerp)') ;
43
44
define('_APCAL_MB_PREV_DATE','Gisteren') ;
45
define('_APCAL_MB_NEXT_DATE','Morgen') ;
46
define('_APCAL_MB_PREV_WEEK','Vorige week') ;
47
define('_APCAL_MB_NEXT_WEEK','Volgende week') ;
48
define('_APCAL_MB_PREV_MONTH','Vorige maand') ;
49
define('_APCAL_MB_NEXT_MONTH','Volgende maand') ;
50
define('_APCAL_MB_PREV_YEAR','Vorige jaar') ;
51
define('_APCAL_MB_NEXT_YEAR','Volgend jaar') ;
52
53
define('_APCAL_MB_NOEVENT','Geen activiteiten') ;
54
define('_APCAL_MB_ADDEVENT','Activiteiten toevoegen') ;
55
define('_APCAL_MB_CONTINUING','(lopende)') ;
56
define('_APCAL_MB_RESTEVENT_PRE','meer') ;
57
define('_APCAL_MB_RESTEVENT_SUF','info') ;
58
define('_APCAL_MB_TIMESEPARATOR','--') ;
59
60
define('_APCAL_MB_ALLDAY_EVENT','Volledige dag') ;
61
define('_APCAL_MB_LONG_EVENT','Als balk voorstellen') ;
62
define('_APCAL_MB_LONG_SPECIALDAY','Verjaardag, etc.') ;
63
64
define('_APCAL_MB_PUBLIC','publiek') ;
65
define('_APCAL_MB_PRIVATE','priv�') ;
66
define('_APCAL_MB_PRIVATETARGET',' %s') ;
67
68
define('_APCAL_MB_LINK_TO_RRULE1ST','Naar 1ste activiteit springen') ;
69
define('_APCAL_MB_RRULE1ST','Dat is de 1ste activiteit') ;
70
71
define('_APCAL_MB_EVENT_NOTREGISTER','niet geregistreerd') ;
72
define('_APCAL_MB_EVENT_ADMITTED','goedgekeurd') ;
73
define('_APCAL_MB_EVENT_NEEDADMIT','wacht op goedkeuring') ;
74
75
define('_APCAL_MB_TITLE_EVENTINFO','Activiteitsplanner') ;
76
define('_APCAL_MB_SUBTITLE_EVENTDETAIL','Detailweergave') ;
77
define('_APCAL_MB_SUBTITLE_EVENTEDIT','Editeerweergave') ;
78
79
define('_APCAL_MB_HOUR_SUF',':') ;
80
define('_APCAL_MB_MINUTE_SUF','') ;
81
82
define('_APCAL_TH_SUMMARY','Titel') ;
83
define('_APCAL_TH_STARTDATETIME','Begin') ;
84
define('_APCAL_TH_ENDDATETIME','Einde') ;
85
define('_APCAL_TH_ALLDAYOPTIONS','Volledige dag') ;
86
define('_APCAL_TH_LOCATION','Plaats') ;
87
define('_APCAL_TH_CONTACT','Verantwoordelijke') ;
88
define('_APCAL_TH_CLASS','Klasse') ;
89
define('_APCAL_TH_DESCRIPTION','Omschrijving') ;
90
define('_APCAL_TH_RRULE','Terugkeerpatroon') ;
91
define('_APCAL_TH_ADMISSIONSTATUS','Status') ;
92
93
define('_APCAL_NTC_MONTHLYBYMONTHDAY','(Getal ingeven)') ;
94
define('_APCAL_NTC_EXTRACTLIMIT','-> max. %s activiteiten worden ingegeven') ;
95
define('_APCAL_NTC_NUMBEROFNEEDADMIT','(Activiteiten die nog op goedkeuring wachten: %s )') ;
96
97
define('_APCAL_OPT_PRIVATEMYSELF','alleen ikzelf') ;
98
define('_APCAL_OPT_PRIVATEGROUP','Groep %s') ;
99
define('_APCAL_OPT_PRIVATEINVALID','(ungeldige groep)') ;
100
101
define('_APCAL_CNFM_SAVEAS_YN','Ingave opslaan - OK?') ;
102
define('_APCAL_CNFM_DELETE_YN','Ingave verwijderen -OK?') ;
103
104
define('_APCAL_ERR_INVALID_EVENT_ID','Error: EventID niet gevonden') ;
105
define('_APCAL_ERR_NOPERM_TO_SHOW',"Error: geen rechten") ;
106
define('_APCAL_ERR_NOPERM_TO_OUTPUTICS',"Error: geen rechten voor iCalender output") ;
107
define('_APCAL_ERR_LACKINDISPITEM','Ingave %s is leeg.<br />Ga terug') ;
108
109
define('_APCAL_BTN_JUMP','Ga naar') ;
110
define('_APCAL_BTN_NEWINSERTED','Nieuwe ingave') ;
111
define('_APCAL_BTN_SUBMITCHANGES',' Wijzigingen doorvoeren ') ;
112
define('_APCAL_BTN_SAVEAS','Opslaan als') ;
113
define('_APCAL_BTN_DELETE','Verwijderen') ;
114
define('_APCAL_BTN_EDITEVENT','Editeren') ;
115
define('_APCAL_BTN_RESET','Terugzetten') ;
116
define('_APCAL_BTN_OUTPUTICS_WIN','iCalendar(Win)') ;
117
define('_APCAL_BTN_OUTPUTICS_MAC','iCalendar(Mac)') ;
118
119
define('_APCAL_RR_EVERYDAY','Elke dag') ;
120
define('_APCAL_RR_EVERYWEEK','Elke week') ;
121
define('_APCAL_RR_EVERYMONTH','Elke maand') ;
122
define('_APCAL_RR_EVERYYEAR','Elk jaar') ;
123
define('_APCAL_RR_FREQDAILY','dagelijks') ;
124
define('_APCAL_RR_FREQWEEKLY','wekelijks') ;
125
define('_APCAL_RR_FREQMONTHLY','maandelijks') ;
126
define('_APCAL_RR_FREQYEARLY','jaarlijks') ;
127
define('_APCAL_RR_FREQDAILY_PRE','Alle') ;
128
define('_APCAL_RR_FREQWEEKLY_PRE','Alle') ;
129
define('_APCAL_RR_FREQMONTHLY_PRE','Alle') ;
130
define('_APCAL_RR_FREQYEARLY_PRE','Alle') ;
131
define('_APCAL_RR_FREQDAILY_SUF','Dagen') ;
132
define('_APCAL_RR_FREQWEEKLY_SUF','Weken') ;
133
define('_APCAL_RR_FREQMONTHLY_SUF','Maanden') ;
134
define('_APCAL_RR_FREQYEARLY_SUF','Jaren') ;
135
define('_APCAL_RR_PERDAY','alle %s dagen') ;
136
define('_APCAL_RR_PERWEEK','alle %s weken') ;
137
define('_APCAL_RR_PERMONTH','alle %s maanden') ;
138
define('_APCAL_RR_PERYEAR','alle %s jaren') ;
139
define('_APCAL_RR_COUNT','<br />%s-keer') ;
140
define('_APCAL_RR_UNTIL','<br />tot %s') ;
141
define('_APCAL_RR_R_NORRULE','weerkerend NEEN') ;
142
define('_APCAL_RR_R_YESRRULE','weerkerend JA') ;
143
define('_APCAL_RR_OR','of') ;
144
define('_APCAL_RR_S_NOTSELECTED','-niet geselecteerd-') ;
145
define('_APCAL_RR_S_SAMEASBDATE','gelijk aan begin') ;
146
define('_APCAL_RR_R_NOCOUNTUNTIL','Geen einde') ;
147
define('_APCAL_RR_R_USECOUNT_PRE','Herhalingen') ;
148
define('_APCAL_RR_R_USECOUNT_SUF','keer') ;
149
define('_APCAL_RR_R_USEUNTIL','tot') ;
150
151
152
153
// Appended by Xoops Language Checker -GIJOE- in 2003-12-05 14:18:43
154
define('_APCAL_TH_SUBMITTER','Submitter');
155
156
// Appended by Xoops Language Checker -GIJOE- in 2003-12-26 10:55:16
157
define('_APCAL_STRFFMT_DATE_FOR_BLOCK','%d %b');
158
define('_APCAL_STRFFMT_TIME','%H:%M');
159
160
// Appended by Xoops Language Checker -GIJOE- in 2004-01-14 18:31:01
161
define('_APCAL_FMT_YW','WEEK%2$s %1$s');
162
define('_APCAL_FMT_WEEKNO','WEEK %s');
163
define('_APCAL_ICON_LIST','List View');
164
define('_APCAL_MB_SHOWALLCAT','All Categories');
165
define('_APCAL_MB_ORDER_ASC','ascending');
166
define('_APCAL_MB_ORDER_DESC','descending');
167
define('_APCAL_MB_SORTBY','Sort by:');
168
define('_APCAL_MB_CURSORTEDBY','Events currently sorted by:');
169
define('_APCAL_TH_CATEGORIES','Categories');
170
define('_APCAL_TH_LASTMODIFIED','Last Modified');
171
define('_APCAL_BTN_PRINT','Print');
172
173
// Appended by Xoops Language Checker -GIJOE- in 2004-01-17 18:09:08
174
define('_APCAL_FMT_YMDO','%4$s%3$s%2$s%1$s');
175
define('_APCAL_MB_LABEL_CHECKEDITEMS','Checked events are:');
176
define('_APCAL_MB_LABEL_OUTPUTICS','to be exported in iCalendar');
177
define('_APCAL_MB_ICALSELECTPLATFORM','Select platform');
178
define('_APCAL_MB_OP_AFTER','After');
179
define('_APCAL_MB_OP_BEFORE','Before');
180
define('_APCAL_MB_OP_ON','On');
181
define('_APCAL_MB_OP_ALL','All');
182
define('_APCAL_BTN_IMPORT','Import!');
183
define('_APCAL_BTN_UPLOAD','Upload!');
184
define('_APCAL_BTN_EXPORT','Export!');
185
define('_APCAL_BTN_EXTRACT','Extract');
186
define('_APCAL_BTN_ADMIT','Admit');
187
define('_APCAL_BTN_MOVE','Move');
188
define('_APCAL_BTN_COPY','Copy');
189
190
}
191
192
?>
0 ignored issues
show
It is not recommended to use PHP's closing tag ?> in files other than templates.

Using a closing tag in PHP files that only contain PHP code is not recommended as you might accidentally add whitespace after the closing tag which would then be output by PHP. This can cause severe problems, for example headers cannot be sent anymore.

A simple precaution is to leave off the closing tag as it is not required, and it also has no negative effects whatsoever.

Loading history...
193