Manual:Coding conventions
From MediaWiki.org
This page describes the coding conventions used within the MediaWiki codebase and extensions which are intended for use on Wikimedia websites, including appropriate naming conventions.
Contents |
[edit] Whitespace etc.
Lines should be indented with a single tab character per indenting level. You should make no assumptions about the number of spaces per tab. Most MediaWiki developers find 4 spaces per tab to be best for readability, but many systems are configured to use 8 spaces per tab.
All text files should be checked in to Subversion with svn:eol-style set to "native". This is necessary to prevent corruption by certain Windows-based text editors.
All text files are encoded with UTF-8. Be sure that your editor supports this.
Do not use MS Notepad to edit files. Notepad inserts unicode byte order marks which stop PHP files from working.
[edit] Indenting and alignment
MediaWiki's indenting style is similar to the so-called "One True Brace Style". Braces are placed on the same line as the start of the function, conditional, loop, etc.
function wfTimestampOrNull( $outputtype = TS_UNIX, $ts = null ) { if ( is_null( $ts ) ) { return null; } else { return wfTimestamp( $outputtype, $ts ); } }
Multi-line statements are written with the second and subsequent lines being indented by one extra level:
return strtolower( $val ) == 'on' || strtolower( $val ) == 'true' || strtolower( $val ) == 'yes' || preg_match( "/^\s*[+-]?0*[1-9]/", $val );
Use indenting and line breaks to clarify the logical structure of your code. Expressions which nest multiple levels of parentheses or similar structures may begin a new indenting level with each nesting level:
$wgAutopromote = array( 'autoconfirmed' => array( '&', array( APCOND_EDITCOUNT, &$wgAutoConfirmCount ), array( APCOND_AGE, &$wgAutoConfirmAge ), ), );
Mid-line vertical alignment should be achieved with spaces. For instance this:
$namespaceNames = array( NS_MEDIA => 'Media', NS_SPECIAL => 'Special', NS_MAIN => '',
Is achieved as follows with spaces rendered as dots:
$namespaceNames·=·array( → NS_MEDIA············=>·'Media', → NS_SPECIAL··········=>·'Special', → NS_MAIN·············=>·'',
In general, you should avoid using vertical alignment, since it tends to create diffs which are hard to interpret, since the width allowed for the left column constantly has to be increased as more items are added.
[edit] Line continuation
Lines should be broken at between 80 and 100 columns. There are some rare exceptions to this. Functions which take lots of parameters are not exceptions.
The operator separating the two lines may be placed on either the following line or the preceding line. An operator placed on the following line is more visible and so is more often used when the author wants to draw attention to it:
return strtolower( $val ) == 'on' || strtolower( $val ) == 'true' || strtolower( $val ) == 'yes' || preg_match( "/^\s*[+-]?0*[1-9]/", $val );
An operator placed on the preceding line is less visible, and is used for more common types of continuation such as concatenation and comma:
$wgOut->addHTML( Xml::fieldset( wfMsg( 'importinterwiki' ) ) . Xml::openElement( 'form', array( 'method' => 'post', 'action' => $action, 'id' => 'mw-import-interwiki-form' ) ) . wfMsgExt( 'import-interwiki-text', array( 'parse' ) ) . Xml::hidden( 'action', 'submit' ) . Xml::hidden( 'source', 'interwiki' ) . Xml::hidden( 'editToken', $wgUser->editToken() ) .
When continuing "if" statements, a switch to Allman-style braces makes the separation between the condition and the body clear:
if ( ( $this->mNamespace != NS_SPECIAL && strlen( $dbkey ) > 255 ) || strlen( $dbkey ) > 512 ) { return false; }
Opinions differ on the amount of indentation that should be used for the conditional part. Using an amount of indentation different to that used by the body makes it more clear that the conditional part is not the body, but this is not universally observed.
Continuation of conditionals and very long expressions tend to be ugly whichever way you do them. So it's sometimes best to break them up by means of temporary variables.
[edit] Spaces
MediaWiki favours a heavily-spaced style for optimum readability.
Put spaces on either side of binary operators, for example:
$a = $b + $c;
NOT
$a=$b+$c;
Put spaces next to parentheses on the inside, except where the parentheses are empty. Do not put a space following a function name.
$a = getFoo( $b ); $c = getBar();
Opinions differ as to whether control structures if, while, for and foreach should be followed by a space; the following two styles are acceptable:
// Spacey if ( isFoo() ) { $a = 'foo'; } // Not so spacey if( isFoo() ) { $a = 'foo'; }
Single-line comments should have a space between the # or // and the comment text.
To help developers fix code with an inadequately spacey style, a tool called stylize.php has been created, which uses PHP's tokenizer extension to add spaces at the relevant places.
[edit] Braceless control structures
Single-line if statements are rarely used. They reduce the readability of the code by moving important statements away from the left margin, where the reader is looking for them.
Remember that making code shorter doesn't make it simpler. The goal of coding style is to communicate effectively with humans, not to fit computer-readable text into a small space.
Most MediaWiki developers favour fully-braced control structures:
if ( $done ) { return; }
This avoids a common logic error, which is especially prevalent when the developer is using a text editor which does not have a "smart indenting" feature. The error occurs when a single-line block is later extended to two lines:
if ( $done ) return;
Later changed to:
if ( $done ) $this->cleanup(); return;
This has the potential to create subtle bugs.
[edit] emacs style
In emacs (see also php-mode), you can approximate this style with a custom minor mode in your .emacs file, i.e.
(defconst mw-style '((c-offsets-alist . ((case-label . +) (arglist-close . 0) (cpp-macro . (lambda(x) (cdr x))) (comment-intro . 0))) (c-hanging-braces-alist (defun-open after) (block-open after) (defun-close)))) (c-add-style "MediaWiki" mw-style) (define-minor-mode mw-mode "tweak style for mediawiki" nil " MW" nil (if mw-mode (progn (setq indent-tabs-mode t) (setq tab-width 4 c-basic-offset 4) (c-set-style "MediaWiki")) (kill-local-variable 'tab-width) (kill-local-variable 'c-basic-offset))) (add-hook 'php-mode-hook (lambda () (mw-mode 1)))
[edit] Logical structure
[edit] Assignment expressions
Using assignment as an expression is surprising to the reader and looks like an error. Do not write code like this:
if ( $a = foo() ) { bar(); }
Space is cheap, and you're a fast typist, so please...
$a = foo(); if ( $a ) { bar(); }
There used to be a reason to use assignment in a while() condition, for iteration:
$res = $dbr->query( 'SELECT * from some_table' ); while ( $row = $dbr->fetchObject( $res ) ) { showRow( $row ); }
This is unnecessary in new code. Thanks to the wonders of PHP 5, you can now write:
$res = $dbr->query( 'SELECT * from some_table' ); foreach ( $res as $row ) { showRow( $row ); }
[edit] Ternary operator
The ternary operator can be used profitably if the expressions are very short and obvious:
$wiki = isset( $this->mParams['wiki'] ) ? $this->mParams['wiki'] : false;
But if you're considering a multi-line expression with a ternary operator, please consider using an "if" block instead. Remember, disk space is cheap, code readability is everything, "if" is English and ?: is not.
[edit] String literals
For simple string literals, single quotes are slightly faster for PHP to parse than double quotes. Perhaps more importantly, they are easier to type, since you don't have to press shift. For these reasons, single quotes are preferred in cases where they are equivalent to double quotes.
However, do not be afraid of using PHP's double-quoted string interpolation feature:
$elementId = "myextension_$index";
This has slightly better performance characteristics than the equivalent using the concatenation (dot) operator, and it looks nicer too.
Heredoc-style strings are sometimes useful:
$s = <<<EOT <div class="mw-some-class"> $boxContents </div> EOT;
Some authors like to use END as the ending token, which is also the name of a PHP function. This leads to IRC conversations like the following:
<Simetrical> vim also has ridiculously good syntax highlighting. <TimStarling> it breaks when you write <<<END in PHP <Simetrical> TimStarling, but if you write <<<HTML it syntax-highlights as HTML! <TimStarling> I have to keep changing it to ENDS so it looks like a string again <brion-codereview> fix the bug in vim then! <TimStarling> brion-codereview: have you ever edited a vim syntax script file? <brion-codereview> hehehe <TimStarling> http://tstarling.com/stuff/php.vim <TimStarling> that's half of it... <TimStarling> here's the other half: http://tstarling.com/stuff/php-syntax.vim <TimStarling> 1300 lines of sparsely-commented code in a vim-specific language <TimStarling> which turns out to depend for its operation on all kinds of subtle inter-pass effects <werdnum> TimStarling: it looks like some franken-basic language.
[edit] C borrowings
The PHP language was designed by people who love C and wanted to bring souvenirs from that language into PHP. But PHP has some important differences from C.
In C, constants are implemented as preprocessor macros and are fast. In PHP, they are implemented by doing a runtime hashtable lookup for the constant name, and are slower than just using a string literal. In most places where you would use an enum or enum-like set of macros in C, you can use string literals in PHP.
PHP has three special literals: true, false and null. Homesick C developers write null as NULL because they want to believe that it is a macro defined as ((void*)0). This is not necessary.
Use "elseif" not "else if".
[edit] PHP pitfalls
- empty() is inverted conversion to boolean with error suppression. Only use it when you really want to suppress errors. Otherwise just use "!". Do not use it to test if an array is empty, unless you simultaneously want to check if the variable is unset.
- Study the rules for conversion to boolean. Be careful when converting strings to boolean.
- Be careful with double-equals comparison operators. Triple-equals is often more intuitive.
- 'foo' == 0 is true
- '000' == '0' is true
- '000' === '0' is false
- Array plus does not renumber the keys of numerically-indexed arrays, so array('a') + array('b') == array('a')
[edit] Classes
- As a holdover from PHP 4.x's lack of private class members and methods, older code will be marked with comments such as /** @private */ to indicate the intention; please respect this as if it were enforced by the compiler
- Newer code will use proper visibilities, but do not add it to existing code without first checking, testing and refactoring as required, because the above rule has been broken in several places
- Member variables used to be named mXxx to distinguish them from other variables. This is pointless, since they're distinguished by being prefixed by
$this->when used, and this convention should be avoided for new classes - We prefix the names of global variables with wg (wiki global) in order to make it easier to distinguish them, which thus makes it easier to spot missing global declarations
[edit] Naming
There is a preference for lowerCamelCase when naming functions or variables. For example:
private function doSomething( $userPrefs, $editSummary ) {
There are also some prefixes used in different places:
[edit] Functions
- wf (wiki functions) - Top-level functions, e.g.
function wfFuncname() { ... }
Verb phrases are preferred
[edit] Variables
- wg - global variables, e.g.
$wgVersion,$wgTitle - m - object member variables:
$this->mPage. This is discouraged in new code, but try to stay consistent within a class.
[edit] Extension Functions and Variables
- ef - extension functions : top-level functions added by user extensions
- eg - extension globals
[edit] HTTP and session stuff
The following may be seen in old code but are discouraged in new code:
- ws - Session variables, e.g.
$_SESSION['wsSessionName'] - wc - Cookie variables, e.g.
$_COOKIE['wcCookieName'] - wp - Post variables (submitted via form fields), e.g.
$wgRequest->getText( 'wpLoginName' )
[edit] Database
- Table names are usually singular nouns: user, page, revision, etc
- Except when they're not: pagelinks, categorylinks...
- Column names are given a prefix derived from the table name: the name itself if it's short, or an abbreviation:
- page -> page_id, page_namespace, page_title...
- categorylinks -> cl_from, cl_namespace...
[edit] Common local variables
It is common to work with an instance of the Database class; we have a naming convention for these which helps keep track of the nature of the server to which we are connected. This is of particular importance in replicated environments, such as Wikimedia and other large wikis.
$dbw- a Database object for writing (a master connection)$dbr- a Database object for non-concurrency-sensitive reading (may be a read-only slave, slightly behind master state)
[edit] Inline documentation
- The Doxygen documentation style is used (it is very similar to PHPDoc for the subset that we use). For example: giving a description of a function or method, the parameters it takes (using
@param), and what the function returns (using@return), or the@ingroupor@authortags. Please use "@" rather than "\" as the escape character (e.g. use@paramrather than\param) - both styles work in Doxygen, but the@paramstyle works with PHPDoc too, whereas the\paramstyle does not.
- General format for parameters is such:
@param $varname [type] [description]so make sure you don't put[type]before$varname.
[edit] Messages
- When creating a new message, use hyphens (-) where possible. So for example, "some-new-message" is a good name, while "someNewMessage" and "some_new_message" are not.
- If the message is going to be used as a label which can have a colon (:) after it, don't hardcode the colon; instead, put the colon inside the message text. Some languages (such as French) need to handle colons in a different way, which is impossible if the colon is hardcoded.
- HTML class and ID names should be prefixed with "mw-". It seems most common to hyphenate them after that, like "mw-some-new-class" instead of "mw-somenewclass" or "mw-some_new_class", but there doesn't appear to be a clear convention at present.
[edit] To do
- Naming
- Function parameter choice