Last updated April 23, 2012. Created by beeradb on July 28, 2002.
Edited by jhodgdon, tim.plunkett, xjm, sun. Log in to edit this page.
Note: The Drupal Coding Standards apply to code within Drupal and its contributed modules. This document is loosely based on the PEAR Coding standards. Comments and names should use US English spelling (e.g., "color" not "colour").
Drupal coding standards are version-independent and "always-current". All new code should follow the current standards, regardless of (core) version. Existing code in older versions may be updated, but doesn't necessarily have to be. Especially for larger code-bases (like Drupal core), updating the code of a previous version for the current standards may too huge of a task. However, code in current versions should follow the current standards.
Note: Do not squeeze coding standards updates/clean-ups into otherwise unrelated patches. Only touch code lines that are actually relevant. To update existing code for the current standards, always create separate and dedicated issues and patches.
See the Helper modules section at the bottom of this page for information on modules that can review code for coding standards problems (and in some cases, even fix the problems).
Contents of this Page
- Indenting and Whitespace
- Operators
- Casting
- Control Structures
- Line length and wrapping
- Function Calls
- Function Declarations
- Class Constructor Calls
- Arrays
- Quotes
- String Concatenations
- Comments
- Including Code
- PHP Code Tags
- Semicolons
- Example URLs
- Naming Conventions (Functions, Constants, Global Variables, Classes, Files)
- Helper Module
Indenting and Whitespace
Use an indent of 2 spaces, with no tabs.
Lines should have no trailing whitespace at the end.
Files should be formatted with \n as the line ending (Unix line endings), not \r\n (Windows line endings).
All text files should end in a single newline (\n). This avoids the verbose "\ No newline at end of file" patch warning and makes patches easier to read since it's clearer what is being changed when lines are added to the end of a file.
Operators
All binary operators (operators that come between two values), such as +, -, =, !=, ==, >, etc. should have a space before and after the operator, for readability. For example, an assignment should be formatted as $foo = $bar; rather than $foo=$bar;. Unary operators (operators that operate on only one value), such as ++, should not have a space between the operator and the variable or number they are operating on.
Casting
Put a space between the (type) and the $variable in a cast: (int) $mynumber.
Control Structures
Control structures include if, for, while, switch, etc. Here is a sample if statement, since it is the most complicated of them:
if (condition1 || condition2) {
action1;
}
elseif (condition3 && condition4) {
action2;
}
else {
defaultaction;
}(Note: Don't use "else if" -- always use elseif.)
Control statements should have one space between the control keyword and opening parenthesis, to distinguish them from function calls.
Always use curly braces even in situations where they are technically optional. Having them increases readability and decreases the likelihood of logic errors being introduced when new lines are added.
For switch statements:
switch (condition) {
case 1:
action1;
break;
case 2:
action2;
break;
default:
defaultaction;
}For do-while statements:
do {
actions;
} while ($condition);
Alternate control statement syntax for templates
In templates, the alternate control statement syntax using : instead of brackets is allowed. Note that there should not be a space between the closing paren after the control keyword, and the colon, and HTML/PHP inside the control structure should be indented. For example:
<?php if (!empty($item)): ?>
<p><?php print $item; ?></p>
<?php endif; ?>
<?php foreach ($items as $item): ?>
<p><?php print $item; ?></p>
<?php endforeach; ?>Line length and wrapping
The following rules apply to code. See Doxygen and comment formatting conventions for rules pertaining to comments.
- In general, all lines of code should not be longer than 80 chars.
- Lines containing longer function names, function/class definitions, variable declarations, etc are allowed to exceed 80 chars.
- Control structure conditions may exceed 80 chars, if they are simple to read and understand:
if ($something['with']['something']['else']['in']['here'] == mymodule_check_something($whatever['else'])) {
...
}
if (isset($something['what']['ever']) && $something['what']['ever'] > $infinite && user_access('galaxy')) {
...
}
// Non-obvious conditions of low complexity are also acceptable, but should
// always be documented, explaining WHY a particular check is done.
if (preg_match('@(/|\\)(\.\.|~)@', $target) && strpos($target_dir, $repository) !== 0) {
return FALSE;
} - Conditions should not be wrapped into multiple lines.
- Control structure conditions should also NOT attempt to win the Most Compact Condition In Least Lines Of Code Award™:
// DON'T DO THIS!
if ((isset($key) && !empty($user->uid) && $key == $user->uid) || (isset($user->cache) ? $user->cache : '') == ip_address() || isset($value) && $value >= time())) {
...
}
Instead, it is recommended practice to split out and prepare the conditions separately, which also permits documenting the underlying reasons for the conditions:
// Key is only valid if it matches the current user's ID, as otherwise other
// users could access any user's things.
$is_valid_user = (isset($key) && !empty($user->uid) && $key == $user->uid);
// IP must match the cache to prevent session spoofing.
$is_valid_cache = (isset($user->cache) ? $user->cache == ip_address() : FALSE);
// Alternatively, if the request query parameter is in the future, then it
// is always valid, because the galaxy will implode and collapse anyway.
$is_valid_query = $is_valid_cache || (isset($value) && $value >= time());
if ($is_valid_user || $is_valid_query) {
...
}
Note: This example is still a bit dense. Always consider and decide on your own whether people unfamiliar with your code will be able to make sense of the logic.
Function Calls
Functions should be called with no spaces between the function name, the opening parenthesis, and the first parameter; spaces between commas and each parameter, and no space between the last parameter, the closing parenthesis, and the semicolon. Here's an example:
$var = foo($bar, $baz, $quux);As displayed above, there should be one space on either side of an equals sign used to assign the return value of a function to a variable. In the case of a block of related assignments, more space may be inserted to promote readability:
$short = foo($bar);
$long_variable = foo($baz);Function Declarations
function funstuff_system($field) {
$system["description"] = t("This module inserts funny text into posts randomly.");
return $system[$field];
}Arguments with default values go at the end of the argument list. Always attempt to return a meaningful value from a function if one is appropriate.
Class Constructor Calls
When calling class constructors with no arguments, always include parentheses:
$foo = new MyClassName();This is to maintain consistency with constructors that have arguments:
$foo = new MyClassName($arg1, $arg2);Note that if the class name is a variable, the variable will be evaluated first to get the class name, and then the constructor will be called. Use the same syntax:
$bar = 'MyClassName';
$foo = new $bar();
$foo = new $bar($arg1, $arg2);Arrays
Arrays should be formatted with a space separating each element (after the comma), and spaces around the => key association operator, if applicable:
$some_array = array('hello', 'world', 'foo' => 'bar');Note that if the line declaring an array spans longer than 80 characters (often the case with form and menu declarations), each element should be broken into its own line, and indented one level:
$form['title'] = array(
'#type' => 'textfield',
'#title' => t('Title'),
'#size' => 60,
'#maxlength' => 128,
'#description' => t('The title of your node.'),
);Note the comma at the end of the last array element; This is not a typo! It helps prevent parsing errors if another element is placed at the end of the list later.
Quotes
Drupal does not have a hard standard for the use of single quotes vs. double quotes. Where possible, keep consistency within each module, and respect the personal style of other developers.
With that caveat in mind: single quote strings are known to be faster because the parser doesn't have to look for in-line variables. Their use is recommended except in two cases:
- In-line variable usage, e.g. "<h2>$header</h2>".
- Translated strings where one can avoid escaping single quotes by enclosing the string in double quotes. One such string would be "He's a good person." It would be 'He\'s a good person.' with single quotes. Such escaping may not be handled properly by .pot file generators for text translation, and it's also somewhat awkward to read.
String Concatenations
Always use a space between the dot and the concatenated parts to improve readability.
<?php
$string = 'Foo' . $bar;
$string = $bar . 'foo';
$string = bar() . 'foo';
$string = 'foo' . 'bar';
?>When you concatenate simple variables, you can use double quotes and add the variable inside; otherwise, use single quotes.
<?php
$string = "Foo $bar";
?>When using the concatenating assignment operator ('.='), use a space on each side as with the assignment operator:
<?php
$string .= 'Foo';
$string .= $bar;
$string .= baz();
?>Comments
Comment standards are discussed on the separate Doxygen and comment formatting conventions page.
Including Code
Anywhere you are unconditionally including a class file, use require_once(). Anywhere you are conditionally including a class file (for example, factory methods), use include_once(). Either of these will ensure that class files are included only once. They share the same file list, so you don't need to worry about mixing them - a file included with require_once() will not be included again by include_once().
Note: include_once() and require_once() are statements, not functions. You don't need parentheses around the file name to be included.
When including code from the same directory or a sub-directory, start the file path with ".":
include_once ./includes/mymodule_formatting.inc
In Drupal 7.x and later versions, use DRUPAL_ROOT:
require_once DRUPAL_ROOT . '/' . variable_get('cache_inc', 'includes/cache.inc');
PHP Code Tags
Always use <?php ?> to delimit PHP code, not the shorthand, <? ?>. This is required for Drupal compliance and is also the most portable way to include PHP code on differing operating systems and set-ups.
Note that as of Drupal 4.7, the ?> at the end of code files is purposely omitted. This includes for module and include files. The reasons for this can be summarized as:
- Removing it eliminates the possibility for unwanted whitespace at the end of files which can cause "header already sent" errors, XHTML/XML validation issues, and other problems.
- The closing delimiter at the end of a file is optional.
- PHP.net itself removes the closing delimiter from the end of its files (example: prepend.inc), so this can be seen as a "best practice."
Semicolons
The PHP language requires semicolons at the end of most lines, but allows them to be omitted at the end of code blocks. Drupal coding standards require them, even at the end of code blocks. In particular, for one-line PHP blocks:
<?php print $tax; ?> -- YES
<?php print $tax ?> -- NOExample URLs
Use "example.com" for all example URLs, per RFC 2606.
Naming Conventions
Functions and variables
Functions and variables should be named using lowercase, and words should be separated with an underscore. Functions should in addition have the grouping/module name as a prefix, to avoid name collisions between modules.
Persistent Variables
Persistent variables (variables/settings defined using Drupal's variable_get()/variable_set() functions) should be named using all lowercase letters, and words should be separated with an underscore. They should use the grouping/module name as a prefix, to avoid name collisions between modules.
Constants
- Constants should always be all-uppercase, with underscores to separate words. (This includes pre-defined PHP constants like
TRUE,FALSE, andNULL.) - Module-defined constant names should also be prefixed by an uppercase spelling of the module that defines them.
- In Drupal 8 and later, constants should be defined using the
constPHP language keyword (instead ofdefine()), because it is better for performance:
<?php
/**
* Indicates that the item should be removed at the next general cache wipe.
*/
const CACHE_TEMPORARY = -1;
?>Note that
constdoes not work with PHP expressions.define()should be used when defining a constant conditionally or with a non-literal value:<?php
if (!defined('MAINTENANCE_MODE')) {
define('MAINTENANCE_MODE', 'error');
}
?>
Global Variables
If you need to define global variables, their name should start with a single underscore followed by the module/theme name and another underscore.
Classes
All standards related to classes and interfaces, including naming, are covered on http://drupal.org/node/608152 instead of here.
File names
All documentation files should have the file name extension ".txt" to make viewing them on Windows systems easier. Also, the file names for such files should be all-caps (e.g. README.txt instead of readme.txt) while the extension itself is all-lowercase (i.e. txt instead of TXT).
Examples: README.txt, INSTALL.txt, TODO.txt, CHANGELOG.txt etc.
Helper Modules
There are several contributed modules/projects available to assist with review for coding standards compliance:
- Coder module, which includes both Coder Review (reviews) and Coder Upgrade (updates your code). To use it:
- Install the module (like any other module)
- Click on the "Code Review" link in your navigation menu.
- Scroll down to "Select Specific Modules".
- Select the module you wish to review, and click the "Submit" button.
As an alternative to starting from the Code Review link in navigation, you can also review a particular module's code by clicking on the link on the Modules admin screen.
- Dreditor (a browser plug-in for reviewing patches and more)
- PARevview (a set of scripts for reviewing project applications, which runs some coding tests)
- Drupal Code Sniffer (runs coding standards validation without loading drupal)
- The Grammar Parser module provides an automated way of rewriting code files in compliance with code standards. You'll probably also need the Grammar Parser UI module.
Comments
Naming Conventions for files missing
In the Naming Conventions, in the File names section there is mentioned how documentation file names should be formatted but no word on the naming conventions for php, css, js files.
also conventions for .tpl.php
also conventions for .tpl.php should be listed there in case there are any (see this related post)
and class files
and class files
Add "Module documentation guidelines"
I think this page (under "Comments") should have a sentence such as:
Drupal modules should follow the "Module documentation guidelines".
drupalshrek
Maintainer of the VChess module visible in use at chess website Chesspos.com
Line wraps are not mentioned
Line wraps are not mentioned anywhere. Even if they are never to be used (as I assume), they need to be mentioned as such.
Erik Webb
Senior Technical Consultant, Acquia
line wraps
Agree they need to be mentioned. My 2 cents are hard-wrap at 80 characters, but that's my preference. I did notice a mention of this in docs at http://drupal.org/node/161085, but I assume that's just for docs, not code.
Joseph Cheek
DrupalCommons Developer
Video on Why Coding Standards Are Important
If you need more convincing, check out this illustrated video about why coding standards are so important on Build a Module.com.
I've recorded over 500 focused Drupal video tutorials at Build a Module.com.
Here is a presentation I made
Here is a presentation I made on the same. Hope it helps some one.
Drupal coding standards in 10 minutes
Extra White Space
Under the operators section it mentions that white spaces should be added before and after, is there a limit to the white space before?
For example I like to align any consecutive assignments for readability, this introduces extra white spaces and it fails the code sniffer test.
// This may not come out as expected here, but the ideas is it should line up.$foo = '4';
$foobar = '7';
$foob = '2';
I have added a check to my codesniffer code to allow for extra white spaces... (SpaceOperatorSniff.php)
public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
{
$tokens = $phpcsFile->getTokens();
// Check if there is at least one space there may be more
if(ltrim($tokens[($stackPtr - 1)]['content']) != $tokens[($stackPtr - 1)]['content']) {
$whitespace = true;
}
if ($tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE
|| $tokens[($stackPtr + 1)]['content'] != ' '
) {
$error = 'A opeator statement must be followed by a single space';
$phpcsFile->addError($error, $stackPtr);
}
if ($tokens[($stackPtr - 1)]['code'] !== T_WHITESPACE
|| !$whitespace
) {
$error = 'There must be a single space befora a opeator statement';
$phpcsFile->addError($error, $stackPtr);
}
}//end process()
btw, I think it's a bad idea
btw, I think it's a bad idea to align consecutive statements because once you introduce a variable with a name that is longer than the previous ones you have to re-align all the other lines as well which reduces the readability of the patch you create afterwards.
Newline at file end
Since there was more than one recent discussion on that in the project appications review queue: The rule defined in this article obviously causes some confusion.
While the article says
it obviously means that, at the end of any file, a blank line should exist. Actually a blank line, in UNIX text files, means two newlines:
First line\nSecond line\n
....
Last line\n
\n
So I urgently suggest clarification in the document. Many people consider "newline" as an ASCII symbol (\n) and not as a synonym for a blank line.
No. What the article says is
No. What the article says is exactly what it means - "All text files should end in a single newline (\n)." That does not mean TWO \n characters, it means one. The explanation given in the article makes it clear what why this is desired. When in doubt, look at all the core files and you will see without exception that they all end in exactly one \n. There should never be a blank line at the end of any file.
<tr>.This should be discussed with
This should be discussed with the folks working on drupalcs module then. Since it throws errors otherwise. It leads to many confusion in the project applications queue atm (that's why I commented here ;))
(Much core code wouldn't pass hardly any current coding standard IMO, btw, so I would not really make it a role model... but however, there seems to be a big need of discussion on this.)
Edit: I have raised this here #1346946: Newlines at file endings. My only goal is an end of this confusion, so hopefully this will soon be clear.
to blank line or not?
I am getting confused whether I need to hit the enter key at the end of file or not. I set my text editors to show the newline characters and took screenshots.
According to this, the last blank line does not contain a '\n' or 'line feed' character. This contradicts with doitDave's comment above. Do some editor append \n to end of the last line?
We can probably update that
We can probably update that page ... but I believe the intention is that all files should end with "a blank line containing a single newline character".In other words, files must end with "\n" ... and not with "} \n".EDIT: I believe wrongly. :)
We can probably clarify that page ... but I the intention is that all files should have "only one sequential newline character at the end of the file".
In other words, files should *NOT* end with "\n" alone on the final line.
missing link to http://groups.drupal.org/coding-standards-and-be
telling people the place to join the discussion:
join http://groups.drupal.org/coding-standards-and-best-practices
Thomas
Combining IT and arts to organize
http://it-arts.org
Class names
I'm a little confused about whether the class name should or should not have the module name as a prefix - I see that methods and properties in a class don't have the prefix, and on the OO coding standards page it mentions that an underscore should be avoided in a class name (so I shouldn't use dailyWriter_DAOFactory). In the end, I want to know if I should name my class DAOFactory or DailyWriterDAOFactory. I figure this is a good example, as lots of OO modules are bound to have a DAOFactory class.
About quotes.
I don't want to start a flame or discussion about single and double quotes however, single quotes are not faster then double quotes. What's written is currently incorrect. You shouldn't do such micro optimizations anyway.
Roy Simkes
_
I think what is mentioned in this page is true and single quotes are faster then double quotes because when you use single quotes, PHP doesn't use more processes to interpret what is inside the single quote. And in this page its just recommended as its suggested in many other resources.
Shamio
What you said might have been
What you said might have been true on older releases of PHP but not anymore. There are even cases where double quotes are actually faster. While what is suggested is true logically, it's not in the practical life.
Here are the benchmarks, where you can see for yourself: http://phpbench.com/
Roy Simkes
_
Although i am not sure about comparing their speed, i think its not useful to talk about this because always there are different ideas about it and actually its not very important.
Shamio