CodingStandards » History » Version 49
« Previous -
Version 49/64
(diff) -
Next » -
Current version
moyo, 07/09/2009 02:50 AM
validate on 09/07/09
Indentation3 spaces
Line width : 100
{{{
// base level
// level 1
// level 2
// level 1
// base level
?>
}}}
STATE : accepted : 3 spaces / 100 chars max
TODO : review all code
Control structuresMultiple conditions in several idented lines
{{{
if ($test1) {
for ($i=0 ; $i<$end ; $i++) {
echo "test ".( $i<10 ? "0$i" : $i )."<br>";
}
}
if ($a==$b
| ($c==$d
&& $e==$f)) {
}
switch ($test2) {
case 1 :
echo "Case 1";
break;
case 2 :
echo "Case 2";
// No break here : because...
default :
echo "Default Case";
break;
}
?>
}}}
STATE : accepted
TODO : review all code
Including filesinclude_once in order to include the file once and to raise warning if file does not exists
{{{
include_once(GLPI_ROOT."/inc/includes.php");
}}}
STATE : accepted
TODO : require_once , include, require -> include_once
PHP tagsShort tag not allowed. Use complet tags.
{{{
// code
?>
}}}
STATE : accepted
TODO : nothing
FunctionsFunction names should be written in camelBack, for example:
{{{
function userName($a, $bldkjqmjk , $cldqkjmlqdsjkm, $ldqjlqdskj, $peaoizuoiauz,
$lqdkjlqsdmj) {
}
?>
}}}
STATE : accepted
TODO : check all functions
ClassClass names should be written in CamelCase, for example:
{{{
class ExampleAuthentification {
}
?>
}}}
STATE : accepted
TODO : check all classes
VariablesVariable names should be as descriptive and short as possible.
Normal variables should be written in lower case. In case of multiple words use the _ separator.
Global variables should be written in UPPER case. In case of multiple words use the _ separator.
Example:
{{{
$user = 'glpi';
$users = array('glpi', 'glpi2', 'glpi3');
$users_groups = array('glpi', 'glpi2', 'glpi3');
$CFG_GLPI=array();
?>
}}}
STATE : accepted
Variable typesVariable types for use in DocBlocks for Doxygen:
Type | Description | |||
mixed | A variable with undefined (or multiple) type. | |||
integer | Integer type variable (whole number). | |||
float | Float type (point number). | |||
boolean | Logical type (true or false). | |||
string | String type (any value in "" or ' '). | |||
array | Array type. | |||
object | Object type. | |||
ressource | Resource type (returned by for example mysql_connect()). |
Inserting comment in source code for doxygen.
Result : full doc for variables, functions, classes...
STATE : accepted
TODO : check all source code
quotes / double quotes{{{
echo 'dqmkdqmsl';
echo 'toto'.$test.' est vivant';
}}}
After reading bench about strings : http://www.estvideo.net/dew/index/page/phpbench
- Best choice seems to be simple quote.
ex : echo 'toto' not echo "toto"
- best is to concat vars and string.
ex : echo 'toto'.$test.' est vivant.'
- Best choice between echo and print is echo.
- Best choice to construct string before make echo, result : decrease number of use echo.
STATE : accepted
TODO : check all source code
FilesName in lower case.
Maximum line length : 100 characters
STATE : accepted
TODO : check all files
ConstantsCapital letter :
{{{
COMPUTER_TYPE
}}}
STATE : accepted
TODO : check all constants
MySQLQueries must be written onto several lines, one MySQL item by line.
All MySQL words in UPPER case.
All item based must be slash protected (table name, field name, condition).
All values from variable, even integer should be single quoted
{{{
$query = "SELECT *
FROM `glpi_computers`
LEFT JOIN `xyzt` ON (`glpi_computers`.`fk_xyzt` = `xyzt`.`id`
AND `xyzt`.`toto` = 'jk')
WHERE id = '32'
AND ( `glpi_computers`.`name` LIKE '%toto%'
OR `glpi_computers`.`name` LIKE '%tata%' )
ORDER BY `glpi_computers`.`date_mod` ASC
LIMIT 1";
}}}
STATE : accepted
TODO : check all source code