PluginProbe
Boxzilla – WordPress Popup Builder / 3.2.23
Boxzilla – WordPress Popup Builder v3.2.23
3.4.11 3.4.10 3.4.9 3.4.3 3.4.4 3.4.5 3.4.6 3.4.7 3.4.8 trunk 3.0 3.0.1 3.0.2 3.0.3 3.1 3.1.1 3.1.10 3.1.11 3.1.12 3.1.13 3.1.14 3.1.15 3.1.16 3.1.17 3.1.18 All 72 releases
boxzilla / phpcs.xml

phpcs.xml in Boxzilla – WordPress Popup Builder 3.2.23, at phpcs.xml

49 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?xml version="1.0"?>
2 <ruleset name="rules">
3 <description>rules</description>
4 <file>bootstrap.php</file>
5 <file>boxzilla.php</file>
6 <file>src/</file>
7 <rule ref="WordPress-Core">
8 <exclude name="WordPress.PHP.YodaConditions" />
9 <exclude name="WordPress.DB.PreparedSQL.InterpolatedNotPrepared" />
10 <exclude name="WordPress.DB.PreparedSQLPlaceholders.UnfinishedPrepare" />
11 <exclude name="WordPress.DB.PreparedSQL.NotPrepared" />
12 <exclude name="WordPress.WP.DeprecatedFunctions.get_settingsFound" />
13 </rule>
14
15 <rule ref="WordPress.WP.I18n">
16 <properties>
17 <property name="text_domain" type="array">
18 <element value="boxzilla" />
19 </property>
20 </properties>
21 </rule>
22
23 <rule ref="WordPress.WP.DeprecatedFunctions">
24 <properties>
25 <property name="minimum_supported_version" value="4.6"/>
26 </properties>
27 </rule>
28
29 <rule ref="WordPress.Files.FileName">
30 <properties>
31 <property name="strict_class_file_names" value="false"/>
32 </properties>
33 </rule>
34
35 <rule ref="WordPress.NamingConventions.ValidHookName">
36 <properties>
37 <property name="additionalWordDelimiters" value="-"/>
38 </properties>
39 </rule>
40
41 <rule ref="WordPress.WP.CronInterval">
42 <properties>
43 <property name="min_interval" value="60"/>
44 </properties>
45 </rule>
46
47 <arg name="colors" />
48 </ruleset>
49