Development standard
Table of contents
/*<![CDATA[*/ div.rbtoc1597330884488 {padding: 0px;} div.rbtoc1597330884488 ul {list-style: disc;margin-left: 0px;} div.rbtoc1597330884488 li {margin-left: 0px;padding-left: 0px;} /*]]>*/
PrestaShop development standard
Summary
PHP
Variable names
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
.
Assignments
There should be a space between variable and operators:
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.
Statements
if, elseif, while, for: need a space between the
if
keyword and the bracket()
.When a combination of if and else is used and both can return a value, the else has to be avoided.
Recommendation
We recommend one return 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"
Visibility
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 / Function names
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()
oref()
are completely forbidden.Exceptions
The only exceptions are the translation function (called
l()
) and debug the functions (namedp()
andd()
).
Enumeration
Commas have to be followed (and not preceded) by a space.
Objects / Classes
Object name must be singular.
Class name must follow the CamelCase practice, except that the first letter is uppercase.
Defines
Define names must be written in uppercase
Define names have to be prefixed by "PS_" inside the core and module
Define names does not allow none alphabetical characters. Except "_".
Keywords
All keywords have to be lowercase: as, case, if, echo, null
.
Constants
Constants must be uppercase, except for "true", "false" and "null" which must be lowercase: ENT_NOQUOTE
, true
.
Configuration variables
Configuration variables follow the same rules as defined above.
Strings
Strings have to be surrounded by simple quotes, never double ones.
Comments
Inside functions and methods, only the "//" comment tag is allowed.
After the "//" comment marker, a space is required:
// Comment
.The "//" comment marker is tolerated at the end of a code line.
Outside of functions and methods, only the "/" and "/" comment markers are allowed.
PHP Doc comment block is required before the declaration of the method.
For more informations
For more informations about the PHP Doc syntax: http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_tags.pkg.html
Return values
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.
Call
Function call preceded by a "@" is forbidden but beware with function / method call with login / password or path arguments.
Tags
There must be an empty line after the PHP opening tag.
The PHP ending tag is forbidden
Indentation
The tabulation character (" t") is the only indentation character allowed.
Each indentation level must be represented by a single tabulation character.
Array
The
array
keyword must not be followed by a space.When too much data is inside an array, the indentation has to follow the following.
Bloc
Braces are prohibited when they only define one instruction or a combination of statements.
Security
All user's data (data entered by users) has to be cast.
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.
Limitations
Source code lines are limited to 150 characters.
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!
Other
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:echo ('X' == 0 && 'X' == true
Please don't use reference parameters (such as {{function is_ref_to(&$a, &$b) { ... }}}).
SQL
Table names
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".
SQL query
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.
Indentation has to be done for each clause
It is forbidden to make a JOIN in a WHERE clause.
Installing the code validator
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 (http://pear.php.net/package/PHP_CodeSniffer/). 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: https://github.com/PrestaShop/PrestaShop-norm-validator (you must perform this step before going any further with this tutorial).
Eclipse integration
Quick links:
If you use Eclipse, you can integrate code validation within the text editor using a plugin, which is very easy to install: http://www.phpsrc.org/projects/pti/wiki/Installation.
The configuration of the plugin is also very simple: http://www.phpsrc.org/projects/pti-php-codesniffer/wiki/Configuration. In the list of available packages, only choose PHP CodeSniffer and PEAR if you do not yet have them.
You will then have to add the PrestaShop code standard to the Eclipse preferences: go to "PHP Tools" and choose the PS standard that you downloaded earlier (see link above).
If the file does not automatically validate, as it should, you can configure this in the "Preferences" menu, "Validation" option. Otherwise, just right-click on the folder/file in the file-tree, and choose "PHP Tools" in the contextual menu (which you can also be set as a shortcut).
Command line (Linux)
You do not have to use Eclipse to use PHP CodeSniffer, you can also install it so that it can be called from the command line.
Install PEAR: http://pear.php.net/
$> apt-get install php-pear
Install PHP CodeSniffer in PEAR: http://pear.php.net/package/PHP_CodeSniffer
$> 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
https://github.com/PrestaShop/PrestaShop-norm-validator
/usr/share/php/PHP/CodeSniffer/Standards/Prestashop
Launch PHP CodeSniffer
$> phpcs --config-set default_standard Prestashop
Using the program
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):
Integrating the program to Eclipse's console (optional)
Click on the "External tools" button in the icon bar (a green arrow pointing at a small red folder).
Click on the "External tools configuration" tab.
Double-click on "Program" in order to create a configuration:
Location: path to the
phpcs
program (orphpcs.bat
for Windows users).Arguments: the arguments for the command line, for instance
--standard=Prestashop
.
Last updated