Coding Standards
Last updated
Last updated
Table of content
/*<![CDATA[*/ div.rbtoc1597308499481 {padding: 0px;} div.rbtoc1597308499481 ul {list-style: disc;margin-left: 0px;} div.rbtoc1597308499481 li {margin-left: 0px;padding-left: 0px;} /*]]>*/
Consistency is important, even more so when writing open-source code, since the code belongs to millions of eyeballs, and bug-fixing relies on these teeming millions to actually locate bugs and understand how to solve it.
This is why, when writing anything for PrestaShop, be it a theme, a module or a core patch, you should strive to follow the following guidelines. They are the ones that the PrestaShop developers adhere to, and following them is the surest way to have your code be elegantly integrated in PrestaShop.
In short, having code consistency helps keeping the code readable and maintainable.
If use an IDE, you can use the CodeSniffer code validator to help you write better code.
Just like class, method and function names, variable names should be written in English so as to be readable to as many people as possible.
Use lowercase letters, and separate words using underscores. Do not ever use CamelCase.
Corresponding to data from databases: $my_var
.
Corresponding to algorithm: $my_var
.
The visibility of a member variable does not affect its name: private $my_var
.
There should be a space between variable and operators:
"+
", "-
", "*
", "/
", "=
" and any combination of them (e.g. "/=
") need a space between their left and right members.
".
" does not have a space between its left and right members.
Recommendation
For performance reasons, please do not overuse concatenation.
".=
" needs a space between its left and right members.
When testing a boolean variable, do not use a comparison operator, but directly use the value itself, or the value prefixed with an exclamation mark:
if
, elseif
, while
, for
: need a space between the if
keyword and the parentheses ()
.
When a combination of if
and else
is used and both can return a value, the else
statement has to be omitted.
Recommendation
We recommend to use only one return
statement per method/function.
When a method/function returns a boolean and the current method/function's returned value depends on it, the if
statement has to be avoided.
Tests must be grouped by entity.
The visibility must be defined every time, even when it is a public method.
The order of the method properties should be: visibility static function functionName()
.
Method and function names always use CamelCase: begin with a lowercase character and each following words must begin with an uppercase character.
Braces introducing method code have to be preceded by a carriage return.
Method and function names must be explicit, so function names such as b()
or ef()
are completely forbidden.
Exceptions
The only exceptions are the translation function (called l()
) and the debug functions (named p()
and d()
).
Commas have to be followed (and not preceded) by a space.
Object name must be singular.
Class name must follow the CamelCase practice, except that the first letter is uppercase.
Constant names must be written in uppercase, except for "true", "false" and "null" which must be lowercase: ENT_NOQUOTE
, true
.
Constant names have to be prefixed with "PS_
" inside the core and module.
Constant names should only use alphabetical characters and "_".
All keywords have to be lowercase: as, case, if, echo, null
.
Configuration variables follow the same rules as defined above.
Strings have to be surrounded by simple quotes, never double ones.
Inside functions and methods, only the "//
" comment tag is allowed.
After the "//
" comment marker, a space is required:
The "//
" comment marker is tolerated at the end of a code line.
Outside of functions and methods, only the "/*
" and "*/
" comment markers are allowed.
A phpDoc comment block is required before the declaration of the method.
For more informations
The return
statement does not need brackets, except when it deals with a composed expression.
The return
statement can be used to break out of a function.
Performing a function call preceded by a "@
" is forbidden, but beware of function/method call with login/password or path arguments.
There must be an empty line after the PHP opening tag.
The PHP closing tag is forbidden at the end of a file.
The tabulation character ("\t
") is the only indentation character allowed.
Each indentation level must be represented by a single tabulation character.
The array
keyword must not be followed by a space.
When too much data is inside an array, the indentation has to be as follows:
Braces are prohibited when they only define one instruction or a combination of statements.
All users' data (data entered by users) has to be cast.
getValue()
does not protect your code from hacking attempts (SQL injections, XSS flaws and CRSF breaches). You still have to secure your data yourself.
One PrestaShop-specific securization method is pSQL($value)
: it helps protect your database against SQL injections.
All method/function's parameters must be typed (when Array
or Object
) when received.
For all other parameters, they have to be cast each time they are used, except when they are sent to other methods/functions.
Source code lines are limited to 150 characters wide.
Functions and methods lines are limited to 80 characters. Functions must have a good reason to have an overly long name: keep it to the essential!
It is forbidden to use a ternary into another ternary, such as echo ((true ? 'true' : false) ? 't' : 'f');
.
We recommend the use of &&
and ||
into your conditions instead of AND
and OR
: echo ('X' == 0 && 'X' == true)
.
Please refrain from using reference parameters, such as:
Table names must begin with the PrestaShop "_DB_PREFIX_
" prefix.
Table names must have the same name as the object they reflect: "ps_cart
".
Table names have to stay singular: "ps_order
".
Language data have to be stored in a table named exactly like the object's table, and with the "_lang
" suffix: "ps_product_lang
".
Keywords must be written in uppercase.
Back quotes ("`
") must be used around SQL field names and table names.
Table aliases have to be named by taking the first letter of each word, and must be lowercase.
When conflicts between table aliases occur, the second character has to be also used in the name.
A new line has to be created for each clause.
It is forbidden to make a JOIN
in a WHERE
clause.
Go to Settings -> Inspection -> PHP -> PHP Code Sniffer.
Set the path to the phpcs
executable.
Set the coding standard as "PrestaShop" (which is only available if you did put in CodeSniffer's /Standards
folder).
You can add two shortcuts (for instance, F9 to display everything and Ctrl+F9 to hide warnings) in your .vimrc
file in normal and insert mode :
You do not have to use PhpStorm to use PHP CodeSniffer, you can also install it so that it can be called from the command line.
Set the Prestashop standard as the default one
$> phpcs --config-set default_standard Prestashop
The various options for this command are well explained in its documentation. For now, here is the easy way to launch it:
In order to only display errors, not warnings:
If you have already manually installed PHP CodeSniffer, the program should be in PEAR's /scripts
folder.
Windows users: although the phpcs.bat
file should be in that /scripts
folder, you might have to edit it in order for it to work properly (replace the paths with yours):
For more information about the PHP Doc syntax: .
This is a brief tutorial on how to install a code validator on your PC and use it to validate your files. The code validator uses PHP CodeSniffer, which is a PEAR package (). The PrestaShop code standard was created specifically for CodeSniffer, using many rules taken from existing standards, with added customized rules in order to better fit our project.
You can download the PrestaShop code standard using Git: (you must perform this step before going any further with this tutorial).In order for it to be recognized as a basic standard, it must be placed in the CodeSniffer's /Standards
folder
If you use PhpStorm (), follow these steps:
Several plugins are available online. For instance, you can use this one:
Put in your ~/.vim/plugin
folder.
Install PEAR:
$> apt-get install php-pear
Install PHP CodeSniffer in PEAR:
$> pear install PHP_CodeSniffer
Add the PrestaShop standard that you downloaded from SVN earlier, and place it in PHP CodeSniffer's "Standards" folder.
$> git clone
/usr/share/php/PHP/CodeSniffer/Standards/Prestashop