Search
Search
Search
Search
Information
Information
Light
Dark
Open actions menu
Basic upload method
Bypass upload method
Tips!
If you encounter an error (by firewall) while uploading using both methods,
try changing extension of the file before uploading it and rename it right after.
This uploader supports multiple file upload.
Submit
~
var
www
nea-2020.wpress.dk
httpdocs
wp-content
plugins
roar
File Content:
phpcs.xml
<?xml version="1.0"?> <ruleset name="LION Coding Standard" namespace="LION\CS\Standard"> <description> This file defines the ruleset that checks for adhering to the LION Interactive coding standard. More information can be found on the Coding Standard Confluence page here: https://lioninteractive.atlassian.net/wiki/spaces/LION/pages/61997300/Coding+Standards </description> <!-- Config --> <file>.</file> <autoload>./vendor/wp-coding-standards/wpcs/WordPress/PHPCSAliases.php</autoload> <exclude-pattern>*/vendor/*</exclude-pattern> <exclude-pattern>*/.sass-cache/*</exclude-pattern> <exclude-pattern>*/node_modules/*</exclude-pattern> <arg name="tab-width" value="4" /> <arg name="extensions" value="php" /> <!-- Arrays --> <rule ref="WordPress.Arrays.ArrayIndentation" /> <!-- Classes --> <rule ref="Generic.Classes.DuplicateClassName" /> <rule ref="Generic.Classes.OpeningBraceSameLine" /> <rule ref="Squiz.Classes.LowercaseClassKeywords" /> <rule ref="Squiz.Classes.SelfMemberReference" /> <rule ref="Squiz.Classes.SelfMemberReference.NotUsed"> <severity>0</severity> </rule> <!-- Code Analysis --> <rule ref="Generic.CodeAnalysis.AssignmentInCondition" /> <rule ref="Generic.CodeAnalysis.EmptyStatement" /> <rule ref="Generic.CodeAnalysis.UnconditionalIfStatement" /> <rule ref="Generic.CodeAnalysis.UselessOverridingMethod" /> <!-- Comments --> <rule ref="Generic.Commenting.Fixme" /> <rule ref="Generic.Commenting.Todo" /> <rule ref="PEAR.Commenting.ClassComment" /> <rule ref="PEAR.Commenting.ClassComment.MissingVersion"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.ClassComment.MissingCategoryTag"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.ClassComment.MissingLinkTag"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.ClassComment.MissingPackageTag"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.ClassComment.MissingLicenseTag"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.ClassComment.MissingAuthorTag"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.ClassComment.InvalidAuthors"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.FileComment" /> <rule ref="PEAR.Commenting.FileComment.MissingVersion"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.FileComment.MissingCategoryTag"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.FileComment.MissingLinkTag"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.FileComment.InvalidAuthors"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.FunctionComment" /> <rule ref="PEAR.Commenting.FunctionComment.MissingVersion"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.FunctionComment.MissingCategoryTag"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.FunctionComment.MissingLinkTag"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.FunctionComment.InvalidAuthors"> <severity>0</severity> </rule> <rule ref="PEAR.Commenting.InlineComment" /> <!-- Control Structures --> <rule ref="Generic.ControlStructures.InlineControlStructure" /> <rule ref="PSR2.ControlStructures.ElseIfDeclaration" /> <rule ref="Squiz.ControlStructures.ControlSignature" /> <!-- Files --> <rule ref="Generic.Files.ByteOrderMark"/> <rule ref="Generic.Files.LineEndings"> <properties> <property name="eolChar" value="\n"/> </properties> </rule> <rule ref="Generic.Files.LineLength"> <properties> <property name="lineLimit" value="120" /> </properties> <properties> <property name="absoluteLineLimit" value="0" /> </properties> </rule> <rule ref="Generic.Files.OneClassPerFile" /> <rule ref="Generic.Files.OneInterfacePerFile" /> <rule ref="PSR2.Files.ClosingTag" /> <!-- Formatting --> <rule ref="Generic.Formatting.DisallowMultipleStatements" /> <rule ref="Generic.Formatting.SpaceAfterCast"/> <!-- Functions --> <rule ref="Generic.Functions.CallTimePassByReference" /> <rule ref="Generic.Functions.FunctionCallArgumentSpacing" /> <rule ref="Generic.Functions.OpeningFunctionBraceKernighanRitchie"> <properties> <property name="checkClosures" value="true" /> </properties> </rule> <rule ref="PEAR.Functions.FunctionCallSignature"> <properties> <property name="requiredSpacesAfterOpen" value="1" /> <property name="requiredSpacesBeforeClose" value="1" /> </properties> </rule> <rule ref="PEAR.Functions.FunctionCallSignature.ContentAfterOpenBracket"> <severity phpcs-only="true">0</severity> </rule> <rule ref="PEAR.Functions.FunctionCallSignature.CloseBracketLine"> <severity phpcs-only="true">0</severity> </rule> <rule ref="Squiz.Functions.FunctionDeclaration" /> <rule ref="Squiz.Functions.FunctionDeclarationArgumentSpacing"> <properties> <property name="equalsSpacing" value="1" /> <property name="requiredSpacesAfterOpen" value="1" /> <property name="requiredSpacesBeforeClose" value="1" /> </properties> </rule> <rule ref="Squiz.Functions.FunctionDeclarationArgumentSpacing.SpacingBeforeClose"> <severity>0</severity> </rule> <rule ref="Squiz.Functions.FunctionDuplicateArgument" /> <rule ref="Squiz.Functions.LowercaseFunctionKeywords" /> <rule ref="WordPress.Functions.FunctionCallSignatureNoParams" /> <!-- Metrics --> <rule ref="Generic.Metrics.NestingLevel" /> <!-- Naming Conventions --> <rule ref="Generic.NamingConventions.ConstructorName" /> <rule ref="Generic.NamingConventions.UpperCaseConstantName" /> <rule ref="PEAR.NamingConventions.ValidClassName"/> <rule ref="WordPress.NamingConventions.ValidFunctionName"/> <rule ref="WordPress.NamingConventions.ValidHookName"/> <rule ref="WordPress.NamingConventions.ValidVariableName"/> <!-- PHP --> <rule ref="Generic.PHP.BacktickOperator" /> <rule ref="Generic.PHP.CharacterBeforePHPOpeningTag" /> <rule ref="Generic.PHP.DeprecatedFunctions" /> <rule ref="Generic.PHP.DisallowAlternativePHPTags" /> <rule ref="Generic.PHP.DisallowShortOpenTag" /> <rule ref="Generic.PHP.DiscourageGoto" /> <rule ref="Generic.PHP.ForbiddenFunctions" /> <rule ref="Generic.PHP.LowerCaseConstant" /> <rule ref="Generic.PHP.LowerCaseKeyword" /> <rule ref="Generic.PHP.NoSilencedErrors" /> <rule ref="Generic.PHP.Syntax" /> <rule ref="Squiz.PHP.DiscouragedFunctions" /> <rule ref="Squiz.PHP.Eval" /> <rule ref="Squiz.PHP.NonExecutableCode" /> <rule ref="WordPress.PHP.POSIXFunctions" /> <!-- Scope --> <rule ref="Squiz.Scope.MemberVarScope" /> <rule ref="Squiz.Scope.MethodScope" /> <rule ref="Squiz.Scope.StaticThisUsage" /> <!-- Strings --> <rule ref="Squiz.Strings.ConcatenationSpacing"> <properties> <property name="spacing" value="1" /> <property name="ignoreNewlines" value="true" /> </properties> </rule> <rule ref="Squiz.Strings.DoubleQuoteUsage" /> <rule ref="Squiz.Strings.DoubleQuoteUsage.ContainsVar"> <severity>0</severity> </rule> <!-- Whitespace --> <rule ref="Generic.WhiteSpace.DisallowTabIndent" /> <rule ref="Generic.WhiteSpace.ScopeIndent"> <properties> <property name="ignoreIndentationTokens" type="array" value="T_COMMENT" /> </properties> </rule> <rule ref="Squiz.WhiteSpace.CastSpacing"/> <rule ref="Squiz.WhiteSpace.ObjectOperatorSpacing"> <properties> <property name="ignoreNewlines" value="true"/> </properties> </rule> <rule ref="Squiz.WhiteSpace.SuperfluousWhitespace" /> <rule ref="PEAR.WhiteSpace.ObjectOperatorIndent" /> <rule ref="WordPress.WhiteSpace.ArbitraryParenthesesSpacing"> <properties> <property name="spacingInside" value="1"/> <property name="ignoreNewlines" value="true"/> </properties> </rule> <rule ref="WordPress.WhiteSpace.CastStructureSpacing"/> <rule ref="WordPress.WhiteSpace.ControlStructureSpacing" /> <rule ref="WordPress.WhiteSpace.OperatorSpacing" /> <rule ref="WordPress.WhiteSpace.SemicolonSpacing"/> </ruleset>
Edit
Download
Unzip
Chmod
Delete