Child pages
  • Development standard
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Summary

PHP

Variable names

  1. Corresponding to data from databases: $my_var
  2. Corresponding to algorithm: $my_var
  3. The visibility of a member variable does not affect its name: private $my_var

Assignments

  1. There should be a space between variable and operators:
    $my_var = 17;
    $a = $b;
    

Operators

  1. "+", "-", "*", "/", "=" and any combination of them (e.g. "/=") need a space between
    left and right members
    $a + 17;
    $result = $b / 2;
    $i += 34;
    
  2. "." don't have space between left and right members
    echo $a.$b;
    $c = $d.$this->foo();
    

    Recommendation

    For performance reasons, please don't abusing of use of concatenation.

  3. ".=" need a space between left and right members
    $a .= 'Debug';
    

Statements

  1. if, elseif, while, for: presence of a space between the if keyword and the bracket
    if (<condition>)
    while (<condition>)
    
  2. When a combination of if and else are used and that they should both return a value, the else has to be avoided.
    if (<condition>)
    	return false;
    return true;
    

    Recommendation

    We recommend one return per method / function

  3. When a method/function returns a boolean and the current method/function return depends on it, the if statement has to be avoided
    public aFirstMethod()
    {
    	return $this->aSecondMethod();
    }
    
  4. Tests must be grouped by "entity"
    if ($price AND !empty($price))
    	[...]
    if (!Validate::$myObject OR $myObject->id === NULL)
    	[...]
    

Visibility

  1. The visibility must be defined everytime, even when it is a public method.
  2. The order of the method properties should be: visibility static function name()
    private static function foo()
    

Method / Function names

  1. Method and function name always begins with a lowercase character and each following words must begin with an uppercase character (CamelCase)
    public function myExempleMethodWithALotOfWordsInItsName()
    
  2. Braces introducing method code have to be preceded by a carriage return
    public function myMethod($arg1, $arg2)
    {
    	[...]
    }
    
  3. Method and function names must be explicit, so such function names as "b()" or "ef()" are completly forbidden.

    Exceptions

    The only exceptions are the translation function called "l()" and debug functions "p()", "d()".

Enumeration

Commas have to be followed (and only followed) by a space.

protected function myProtectedMethod($arg1, $arg2, $arg3 = null)

Objects / Classes

  1. Object name must be singular
    class Customer
    
  2. Class name must follow the CamelCase practice except that the first letter is uppercase
    class MyBeautifulClass
    

Defines

  1. Define names must be written in uppercase
  2. Define names have to be prefixed by "PS_" inside the core and module
    define('PS_DEBUG', 1);
    define('PS_MODULE_NAME_DEBUG', 1);
    
  3. Define names does not allow none alphabetical characters. Except “_”.

Keywords

All keywords have to be lowercase
e.g. as, case, if, echo, null

Constants

Constants must be uppercase except for "true" and "false" and “null” which must be lowercase
e.g. "ENT_NOQUOTE", "true"

Configuration variables

Configuration variables follow same rules as defines

Strings

Strings have to be surrounded by simple quotes, never double ones

echo 'Debug';
$myObj->name = 'Hello '.$name;

Comments

  1. Inside functions and methods, only the "//" comment tag is allowed
  2. After the "//" comment tag, a space “// Comment“ is required
    // My great comment
    
  3. The "//" comment tag is tolerated at the end of a code line
    $a = 17 + 23; // A comment inside my exemple function
    
  4. Outside funcions and methods, only the "/" and "/" comment tags are allowed
    /* This method is required for compatibility issues */
    public function foo()
    {
    // Some code explanation right here
    [...]
    }
    
  5. PHP Doc Element comment is required before the method declarations
    /**
     * Return field value if possible (both classical and multilingual fields)
     *
     * Case 1 : Return value if present in $_POST / $_GET
     * Case 2 : Return object value
     *
     * @param object $obj Object
     * @param string $key Field name
     * @param integer $id_lang Language id (optional)
     * @return string
     */
    protected function getFieldValue($obj, $key, $id_lang = NULL)
    

    For more informations

Return values

  1. Return statement does not need brackets except when it deals with a composed
    expression
    return $result;
    return ($a + $b);
    return (a() - b());
    return true;
    
  2. Break a function
    return;
    

Call

Function call preceded by a "@" is forbidden but beware with function / method call with login / password or path argmuments.

myfunction()
// In the following exemple we put a @ for security reasons
@mysql_connect([...]);

Tags

  1. An empty line has to be left after the PHP opening tag
    <?php
    
    require_once('my_file.inc.php');
    
  2. The PHP ending tag is forbidden

Indentation

  1. The tabulation character ("\t") is the only indentation character allowed
  2. Each indentation level must be represented by a single tabulation character
    function foo($a)
    {
    	if ($a == null)
    		return false;
    	[...]
    }
    

Array

  1. The array keyword must not be followed by a space
    array(17, 23, 42);
    
  2. The indentation when too much datas are inside an array has to follow the following
    $a = array(
    	36 => $b,
    	$c => 'foo',
    	$d => array(17, 23, 42),
    	$e => array(
    		0 => 'zero',
    		1 => $one
    	)
    );
    

Bloc

Brasses are prohibited when they define only one instruction or a statement combination

if (!$result)
	return false;

for ($i = 0; $i < 17; $i++)
	if ($myArray[$i] == $value)
		$result[] = $myArray[$i];
	else
		$failed++;

Security

  1. All user datas (datas entered by users) have to be casted.
    $data = Tools::getValue('name');
    
    $myObject->street_number = (int)Tools::getValue('street_number');
    
  2. All method/function's parameters must be typed (when Array or Object) when received.
    public myMethod(Array $var1, $var2, Object $var3)
    
  3. For all other parameters they have to be casted each time they are use, but not when
    sent to other methods/functions
    protected myProtectedMethod($id, $text, $price)
    {
    	$this->id = (int)$id;
    	$this->price = (float)$price;
    	$this->callMethod($id, $price);
    }
    

Limitations

  1. Source code lines are limited to 120 characters
  2. Functions and methods lines are limited to 80 with good justifications

Other

  1. It's forbidden to use a ternary into another ternary
  2. We recommend to use && and || into your conditions
  3. Please don't use reference parameters

SQL

Table names

  1. Table names must begin with the PrestaShop "DB_PREFIX" prefix
    [...] FROM `'. _DB_PREFIX_.'customer` [...]
    
  2. Table names must have the same name as the object they reflect
    e.g. "ps_cart"
  3. Table names have to stay singular
    e.g. "ps_order"
  4. Language data have to be stored in a table named exactly like the object's one and with the suffix "_lang" e.g. "ps_product_lang"

SQL query

  1. Keywords must be written in uppercase.
    SELECT `firstname`
    FROM `'. _DB_PREFIX_.'customer`
    
  2. Back quotes ("`") must be used around field names and table names
    SELECT p.`foo`, c.`bar`
    FROM `'. _DB_PREFIX_.'product` p, `'. _DB_PREFIX_.'customer` c
    
  3. Table aliases have to be make by taking the first letter of each word, and must be
    lowercase
    SELECT p.`id_product`, pl.`name`
    FROM `'. _DB_PREFIX_.'product` p
    NATURAL JOIN `'. _DB_PREFIX_.'product_lang` pl
    
  4. When conflicts between table aliases occur, the second character has to be taken too
    SELECT ca.`id_product`, cu.`firstname`
    FROM `'.DB_PREFIX.'cart` ca, `'. _DB_PREFIX_.'customer` cu
    
  5. Indentation has to be done for each clause
    $query = 'SELECT pl.`name`
    FROM `'.PS_DBP.'product_lang` pl
    WHERE pl.`id_product` = 17';
    
  6. It’s forbidden to make a join in WHERE clause
  • No labels