Coding Guidelines: Difference between revisions From Online Manual

Jump to: navigation, search
mNo edit summary
 
(68 intermediate revisions by 12 users not shown)
Line 1: Line 1:
[[Simple Machines]] prides itself on its clean and pure code. This document provides guidelines for all coding done in relation to [[Simple Machines]] including [[Simple Machines Forum]]. This includes all development done by the [http://www.simplemachines.org/about/team.php SMF Team] and users affecting [[customizations]] ([[mods]]/[[themes]]), core development, and tools. As with most things in life, there may be circumstances where these guidelines cannot be followed exactly. Breaking them, however, should be a last resort.
{{Ambox|
| text      = This page describes the coding guidelines for the SMF "core" code, if you are writing a mod you may be looking for the [[Customization approval guidelines]]}}
{{TOCright}}
Simple Machines prides itself on code that is uniform and easy to read. To preserve these qualities, and to maintain performance and reduce the risk of introducing certain types of bugs, the [http://www.simplemachines.org/about/smf/team.php SMF Team] maintains coding guidelines to be used when writing customizations ([[mods]]/[[Theme|themes]]) as well as tools and core SMF code. Although it is not always possible to follow all guidelines exactly, breaking them should be a last resort.


Hopefully, these guidelines will help you better understand the Simple Machines code.
Once you understand these guidelines, you should better understand the SMF code.


==Preface==
==Preface==
This document is meant for semi-experienced users. As such, it does not define many basic terms such as CSS, HTML, PHP, and MySQL. If you do not know what any one of those terms mean, you may be better off familiarizing yourself with those topics before continuing with these guidelines. The term ‘foobar’ is used throughout this document as a placeholder for real variable and function names.
This document is meant for semi-experienced users. As such, it does not define many basic terms such as CSS, HTML, PHP, and MySQL. It is better to familiarizing oneself with those topics before continuing with these guidelines. The term ‘foobar’ is used throughout this document as a placeholder for real variable and function names.


If you have any questions about this document, please see the [http://www.simplemachines.org/community/index.php?board=60.0 SMF Coding Discussion board] in the [http://www.simplemachines.org/community SMF Community Forums]. You may visit the [[function database]] for information about the files, functions, and variables described in this document.
Please see the [http://www.simplemachines.org/community/index.php?board=60.0 SMF Coding Discussion board] in the [http://www.simplemachines.org/community SMF Community Forums] for answers to further questions. The [[function database]] contains additional information about the files, functions, and variables described in this document.


This document is free for distribution.
This document is free for distribution.
Line 16: Line 19:
Each group of actions should have their own controller file. For instance, admin actions use Admin.php. Supporting functions and/or functions that are used in multiple controllers should be placed in a model file. In the case of Admin.php we use Subs-Admin.php. The last piece of the puzzle is to create a view file – Admin.template.php.
Each group of actions should have their own controller file. For instance, admin actions use Admin.php. Supporting functions and/or functions that are used in multiple controllers should be placed in a model file. In the case of Admin.php we use Subs-Admin.php. The last piece of the puzzle is to create a view file – Admin.template.php.


The view is divided into two parts – structure (PHP & HTML) and presentation (CSS). Although, not all templates have their own CSS file – that would be overkill. Structure is then split into two parts – template functions and a separate language file. If you're looking for the various files, you can find controller and model files in the 'Sources' directory, the view files in the 'Themes' directory, and the language files in the [[default theme]] directory in a sub-directory called 'languages.' The actual locations of these directories may vary across SMF installations, but they default to the forum's root directory.
The view is divided into two parts – structure (PHP & HTML) and presentation (CSS). Although, not all templates have their own CSS file – that would be overkill. Structure is then split into two parts – template functions and a separate language file. If you're looking for the various files, you can find controller and model files in the 'Sources' directory, the view files in the 'Themes' directory, and the language files in the [[SMF default theme]] directory in a sub-directory called 'languages.' The actual locations of these directories may vary across SMF installations, but they default to the forum's root directory.


==Naming Conventions==
==Naming Conventions==
This section describes the naming conventions for files, functions, and variables. The conventions below are ambiguous.
Code for any Simple Machines product should use the following naming conventions.
Use Descriptive Names


The name should describe what you are using this for. For instance $message_settings instead of $mset.
===Descriptive Naming===
The name should signify what the object is being used for, not where it is to be used.
* The name of the variable or function should describe what it is or does. For instance, use $message_settings instead of $mset.
Use English as the default language when choosing a name.
* The name of the variable or function should signify what the object is being used for, not where it is to be used.
Camel Case and Underscores
* English should be used as the default language when choosing a name for variables or functions.


Use underscores ‘_’ or 1camel case (foo_bar() or fooBar()).
===Camel Case and Underscores===
Exception: Do not use camel case when naming tables, columns, or indexes in databases. They do not work in all database systems.
* Underscores ($foo_bar) or camelCase ($fooBar) should be used.
Database
* Do not use camel case when naming tables, columns, or indexes in databases. They do not work in all database systems.


When a column is an ID, it should prefixed with ‘id_’ as in ‘id_member’.
===Database===
Tables with the purpose of logging should be prefixed with ‘log_’ as in ‘log_errors’.
* When a column is an ID, it should prefixed with ‘id_’ as in ‘id_member’.
Files
* Tables with the purpose of logging should be prefixed with ‘log_’ as in ‘log_errors’.


When you are displaying an index of information to be displayed to a user such as BoardIndex.php and MessageIndex.php, the file should end with ‘Index’.
===Files===
A file that is used for the management of a feature, such as members, should be prefixed with ‘Manage’. For instance ManageMembers.php.
* When displaying an index of information to a user such as BoardIndex.php and MessageIndex.php, the file name should end with 'Index'.
Files that are not the base file for an action, but instead contain many functions to interact with possibly several files, should be prefixed with ‘Subs-. For instance Subs-Post.php.
* A file that is used for the management of a feature like members should be prefixed with ‘Manage’. For instance, SMF's file is named ManageMembers.php.
Classes should have their own file, prefixed with ‘Class-.
* Files that are not the controller file for an action, but instead contain many functions that can be used in several files, should be prefixed with 'Subs-'. For instance, SMF's posting functions are placed in a file called Subs-Post.php.
Cascading Style Sheets (CSS)
* Classes should have their own file, prefixed with 'Class-'.


ID and class names must be lower case.
===Cascading Style Sheets (CSS)===
ID and class names should always describe what they do, not where they are to be used.
* ID and class names should be lower case.
Naming Conventions Examples: IDs & class names
* ID and class names should always describe what they do, not where they are to be used.


/* WRONG WAY TO DO IT! */
====CSS Examples====
.rightmenu
{{code|1=<nowiki>
{
/* WRONG! This class name tells where the element goes. */
}
.rightmenu
/* RIGHT WAY TO DO IT! */
{
.profilemenu
}
{
}
/* CORRECT! This class name tells what the element is or does. */
.profilemenu
{
}</nowiki>}}


==Database==
==Database==
Functions
While SMF 1.1.x only supports MySQL, SMF 2.0 supports multiple databases. Following these guidelines is extremely important to make sure that remains so.


Do not use mysql_query() to send a query to MySQL. In all versions up to SMF 1.1.x, db_query(). In future versions that is done with $smfFunc['db_query']().
===Functions===
Do not use mysql_fetch_array(). Most of the time you should be using an associative array by using mysql_fetch_assoc(). In rare cases, like when using list(), you may use mysql_fetch_row().
* Do not use database-specific functions to send a query to the database (i.e. - <code>mysql_query()</code> for MySQL). Use <code>$smcFunc['db_query']()</code>.
Use mysql_free_result() to free the resource.
* Do not use database-specific functions to handle query results (i.e. - <code>mysql_fetch_array()</code> or <code>mysql_fetch_assoc()</code> in MySQL). Most of the time, the associative array returned by <code>$smcFunc['db_fetch_assoc']()</code> should be used. In rare cases like when using <code>list()</code>, <code>$smcFunc['db_fetch_row']()</code> may be used.
Queries
* Always use <code>$smcFunc['db_free_result']()</code> to free the resource when they are no longer needed.


Queries have the ability to make your forum run fast or to cripple it. It all depends on how your query is designed and what it is designed for. You, as a developer of queries, should do your best to ensure that a query will be optimized.
===Queries===
Queries should never be in the template files.
Queries have the ability to make a forum run fast or to cripple it. It all depends on how the query is designed. Queries should be optimized as much as possible.
Most of the time it is best to use joins instead of using multiple queries or subselects. Sometimes this is not the case. You should do simple benchmarking to test the difference.
You may not use UNION, SET PASSWORD, BENCHMARK, subselects, or comments in a query. As usual, there is an exception that you should almost never do as it allows for security vulnerabilities:
$modSettings['disableQueryCheck'] = 1;
Use LIMIT whenever possible when the WHERE clause contains a column that does not have a UNIQUE index – to include primary keys.
When selecting columns, only select those which you are going to use. Do not use SELECT *.
When doing the shorthand INNER JOIN, always enclose in parenthesis FROM (table1 as t1, table2 as t2).
All keywords should be capitalized.
When using more than one table in a query, use an alias for the table name.
Always use {$db_prefix} before the table name.
Never use reserved words.
You do not need to add the database name to tables.
All comments should be before the call to db_query(), there should be no comments inside of queries.
Do not rely on the default value. If you are doing an insert and the table has a column that you have no value for, don't include that column.
Whitespace


One LF after db_query("
* Queries should never be in the template files.
Indent once past the base of the query.
* Most of the time it is best to use joins instead of using multiple queries or subselects. Sometimes this is not the case. Simple benchmarking will reveal the differences.
One space after each keyword, column name, and table name.
* Do not use <code>UNION</code>, <code>SET PASSWORD</code>, <code>BENCHMARK</code>, subselects, or comments in a query.
No space when using a function such as COUNT(column).
* Use <code>LIMIT</code> whenever the <code>WHERE</code> clause contains a column that does not have a <code>UNIQUE</code> index – to include primary keys.
Each of the following keywords should be on their own line: SELECT, DELETE, UPDATE, FROM, JOIN, LEFT JOIN, WHERE, AND, OR, GROUP BY, ORDER BY, LIMIT, etc.
* <code>SELECT *</code> should not be used. Queries should only select columns that are needed.
Exception: when AND/OR are used in a sub-condition, they do not need to be on their own line. See the example at the end of this section for more information on that.
* Do not use shorthand <code>INNER JOIN</code>, as it may not be supported in all database systems.
Schema
* All commands (like SELECT, INSERT, REPLACE, UPDATE, DELETE, etc.) and keywords (WHERE, AND, OR, LIMIT, FROM, JOIN, AS, ON, etc.) should be capitalized.
* When using more than one table in a query, use an alias for the table name.
* Always use <code>{db_prefix}</code> before the table name.
* Never use reserved words.
* Do not add the database name to tables.
* All comments should be before the call to <code>$smcFunc['db_query']()</code>. There should be no comments inside of queries.
* Do not rely on the default value. When performing an <code>INSERT</code>, columns for which there is no value should be excluded.


All tables should use the $db_prefix.
====Whitespace====
Tables should work with HEAP or MyISAM. Do not expect a user to have InnoDB or any other engine enabled.
Whitespace is important in making code easier to read and follow. Whitespace should be used in the following situations.
If a column has no reason to ever be NULL, specify NOT NULL (this saves space in the table data.)
Use default values whenever possible. Always assume that those values may be used at some point.
Use the smallest data type possible, but remember that it needs to scale. Come up with reasonable maximums for IDs and that will be the maximum size of your column. Use a corresponding column type.
Remember that using an UNSIGNED number will nearly double the amount of rows allowed. Use UNSIGNED when are you defining an ID.
Primary keys are strongly recommended.


Example of a query:
* Use one LF after <code><nowiki>$smcFunc['db_query']('', '</nowiki></code>.
* Indent once past the base of the query.
* Use one space after each keyword, column name, and table name.
* Do not use spaces when using a function such as <code>COUNT(column)</code>.
* Each of the following keywords should be on their own line: <code>SELECT</code>, <code>DELETE</code>, <code>UPDATE</code>, <code>FROM</code>, <code>JOIN</code>, <code>LEFT JOIN</code>, <code>WHERE</code>, <code>AND</code>, <code>OR</code>, <code>GROUP BY</code>, <code>ORDER BY</code>, <code>LIMIT</code>, etc.


// Get their name and part of their address (excuse the wrapping)
Exception: when <code>AND</code> & <code>OR</code> are used in a sub-condition, they do not need to be on their own line.
$result = db_query("
SELECT ppl.first_name, ppl.last_name, add.city, add.address
FROM people as ppl
LEFT JOIN addresses as add ON (add.id_address = ppl.id_address)
WHERE ppl.id_person = $id_person
AND (ppl.middle_name = 'foo' OR ppl.suffix != 'jr')
AND $condition", __FILE__, __LINE__);


====Query Example====
{{code|1=<nowiki> // Get their name and part of their address (excuse the wrapping)
$result = $smcFunc['db_query']('' ,'
    SELECT ppl.first_name, ppl.last_name, add.city, add.address
    FROM {db_prefix}people as ppl
          LEFT JOIN {db_prefix}addresses as add ON (add.id_address = ppl.id_address)
    WHERE ppl.id_person = {int:person}
          AND (ppl.middle_name = 'foo' OR ppl.suffix != 'jr')
          AND {bool:condition}',
    array(
        'person' => $id_person,
        'condition' => $condition,
    )
);</nowiki>}}


Example of a schema:
===Schema===


CREATE TABLE {$db_prefix}mountains
* All tables should use the <code>{db_prefix}</code>.
(
* Tables should work with HEAP or MyISAM. Do not expect a user to have InnoDB or any other engine enabled.
id_mountain smallint(5) unsigned NOT NULL auto_increment,
* If a column has no reason to ever be <code>NULL</code>, specify <code>NOT NULL</code>. This saves space in the table data.
name varchar(25) NOT NULL default '',
* Use default values whenever possible. Always assume that those values may be used at some point.
date_found int(10) unsigned NOT NULL default '0',
* Use the smallest data type possible, but remember that it needs to scale. Come up with reasonable maximums for IDs, and that will be the maximum size of your column. Use a corresponding column type.
PRIMARY KEY (id_mountain),
* Remember that using an <code>UNSIGNED</code> number will nearly double the amount of rows allowed. Use <code>UNSIGNED</code> when are you defining an ID.
KEY found(date_found)
* Primary keys are strongly recommended.
) TYPE = MyISAM;
 
====Schema Example====
{{code
|1=<nowiki> CREATE TABLE {db_prefix}mountains
(
    id_mountain smallint(5) unsigned NOT NULL auto_increment,
    name varchar(25) NOT NULL default '',
    date_found int(10) unsigned NOT NULL default '0',
    PRIMARY KEY (id_mountain),
    KEY found(date_found)
) TYPE = MyISAM;
</nowiki>}}


==PHP==
==PHP==
Whitespace


Simple Machines uses the BSD/Allman indentation style.
===Whitespace===
Use Unix line feeds (LF) instead of carriage returns like the old Mac® style (CR) and not a combo like Windows® (CR+LF). That does not mean use Unix indentation style.
* Use the [http://en.wikipedia.org/wiki/Indent_style#Allman_style_.28bsd_in_Emacs.29 BSD/Allman indentation style].
No whitespace at the end of lines.
* Use Unix line feeds (LF) instead of carriage returns like the old Mac® style (CR) and not a combo like Windows® (CR+LF). That does not mean use Unix indentation style.
Use tabs1.
* No whitespace at the end of lines.
No need for brackets with one line of code after a control structure
* Use tabs, not spaces, for proper indentation.
Use brackets for switch ... case and every other time (other than one liners) there are multiple statements.
* There is no need to use braces (curly brackets) for one line of code after a control structure.
No space after function name and before (); So no space fooBar();
* Use braces (curly brackets) for switch ... case and every other time there are multiple statements.
Space before and after the equal sign. $var = '';
* Do not use a space between function names and <code>();</code>. So, use <code>fooBar();</code> and not <code>fooBar ();</code>.
When many common assignments are being done, it is common to use more space so that all of the assignments align with each other. This is acceptable.
* Spaces should be before and after an equal sign. For example <code>$var = 'foo';</code>.
There should be no extra line after the closing ?>
* When many common assignments are being done, it is common to use more space so that all of the assignments align with each other. This is acceptable.
Each statement should be on its own line
* There should be no closing <code>?></code> at the end of the files.
One space after control structures such as if () elseif () for () while () etc
* Each statement should be on its own line.
One space after language constructs such as echo, list, require, etc
* Use one space between control structures and parenthesis such as <code>if ()</code>, <code>elseif ()</code>, <code>for ()</code>, <code>while ()</code>, etc.
Do not indent statements in the global scope (not inside of a class, function, statement) (see the example in Appendix B)
* Use one space after language constructs such as <code>echo</code>, <code>list</code>, <code>require</code>, etc.
Every argument, except the last, in an argument list should have a space after the comma.
* Do not indent statements in the global scope (not inside of a class, function, statement, etc.).
When declaring a function, the function name should have a space after it, before the ‘(’. ie function foo ()
* Every argument, except the last, in an argument list should have a space after the comma.
One space before and after the .when concatenating. (See ‘echo’ for echo concatenation)
* Use one space before and after the <code>.</code> when concatenating.
Functions (and language constructs)


Arguments with default values go at the end of the argument list in the function definition. IE function foo ($bar, $var = true, $arg = 'foobar');
===Functions & Language Constructs===
Wrapper function, or functions that do nothing more than call another function, should not be used
* Arguments with default values go at the end of the argument list in the function definition. For example, <code>function foo ($bar, $var = true, $arg = 'foobar');</code>.
Use isset() instead of in_array()
* Wrapper functions (functions that do nothing more than call another function) should not be used.
Use empty() instead of isset() && $var != '' && $var != 0 && $var != false
* Use <code>isset()</code> instead of <code>array_key_exists()</code>.
Use include_once() instead of include() and require_once() instead of require(). Code that you want to run more than once should be inside of a function.
* Use <code>empty()</code> instead of <code>isset() && $var != <nowiki>''</nowiki> && $var != 0 && $var != false</code>.
Variables
* Use <code>include_once()</code> instead of <code>include()</code> and <code>require_once()</code> instead of <code>require()</code>. Code that needs to run more than once should be inside of a function.


Initialize all variables.
===Variables===
Although there may be the rare case where a constant is desired, they should be used sparingly. If you want to put a variable in the global scope, use global. When you do need to use a constant, they should be uppercase.
* Initialize all variables.
There are some special variables that we use such as $modSettings, $context, $sourcedir, etc. You can find out more about those in the documentation. Use those variables before creating your own.
* Although there may be the rare case where a constant is desired, they should be used sparingly. Variables intended for the global scope should be declared with <code>global</code>. When constants are necessary, they should be uppercase.
$_GET and $_POST are available via $_REQUEST. It doesn't make a difference in terms of security to know where the data is coming from since all user data is dirty (see Security). All $_REQUEST variables have been escaped. So, if you wish to use them you are going to have to unescape them. Also, $_GET has had htmlspecialchars__recursive() done to it. So you will need to undo those special chars if you want to use the plain text.
* There are some special variables such as <code>$modSettings</code>, <code>$context</code>, <code>$sourcedir</code>, etc. These variables should be used before creating new ones.
It is usually best to use an associative array instead of numeric.
* <code>$_GET</code> and <code>$_POST</code> are available via <code>$_REQUEST</code>. It does not make a difference in terms of security to know where the data is coming from since all user data is dirty (see [[#Security|Security]]).
Avoid internal type changing/conflicts. PHP won't mind, but it will become confusing as you start to work with that variable. For example, don't do $var = 'foo'; $var = $var == 'foo' ? true : false;
** All <code>$_REQUEST</code> variables have been escaped. They should be unescaped in order to be used in normal content.
Error Handling
** All <code>$_GET</code> variables have been modified with <code>htmlspecialchars__recursive()</code>. Undoing the special characters is necessary to use them in plain text.
* It is usually best to use an associative array instead of numeric.
* Avoid internal type changing/conflicts. PHP won't mind, but it will become confusing to keep track of that variable. For example, do not do <code>$var = 'foo'; $var = $var == 'foo' ? true : false;</code>.


All code should be E-STRICT compatible.
===Error Handling===
You should almost never use @ to silence an error. If you expect there to be an error, check to see if you will receive that error first. For instance, if you are going to include a file, check to see if it exists if you expect it to fail. Otherwise, use require_once().
* All code should be E-STRICT compatible.
We have our own error handling functions. You will surely see them while debugging your code. They should be used when you want to return an error. To see those functions, look in Errors.php.
* <code>@</code> should almost never be used to silence an error. If an error is expected, it should be checked for first. For instance, when including a file, check to see if it exists if it is possible it does not. Otherwise, use <code>require_once()</code>.
Comments
* Simple Machines Forum has its own error handling functions. They should be used to return an error. They can be viewed in Errors.php.


Comment often!
===Comments===
Use comments to describe a block of code or as a placeholder for future code/mods.
* Comment often!
Comments should be unique per the file and should try to be unique per the entire application.
* Use [http://en.wikipedia.org/wiki/PHPDoc PHPDoc] format.
Comments should be kept under 80 characters per line.
* Use comments to describe a block of code or as a placeholder for future code/mods.
One line comments should use ‘// ’ - two forward slashes (//) and a space then the text. It should end with a period.
* Comments should be unique per the file and should try to be unique per the entire application.
Multiple line comments should use /* */ and each are on their own line.
* Comments should be kept under 80 characters per line.
PHP Example of comments:
* One line comments should formatted with <code>//</code>, a space, the comment, and then a period.
* Multiple line comments should use <code>/* */</code> with each one on its own line.


// Here goes a one-liner... so a dog and a man walk in to a bar
====Comment Examples====
function do_something()
{{code|1=<nowiki> /**
{
* This comment will become part of the documentation of the do_something function
foobar();
*/
}
function do_something()
{
// Here goes a one-liner... so a dog and a man walk in to a bar.
foobar();
}
/*
This is my comment.
I want to comment some more.
Keep on commenting.
*/
echo 'I love Rock & Roll, put another dime in ©';</nowiki>}}


/* This is my comment.
===Miscellaneous Guidelines===
I want to comment some more.
* Always use <code><?php</code>. Never use short tags!
Keep on commenting.
* SMF uses procedural programming for most things. Object-oriented programming (OOP) should not be used unless creating an entire class. Future versions of this document will include guidelines for writing OOP PHP code.
*/
* Use single quotes. Double quotes may be used to concatenate a variable, but should only be used in smaller strings.
echo 'I love Rock &amp; Roll, put another dime in &copy;';
* Free as many resources as possible.
 
* Do not use deprecated features or features that do not exist in the minimum version.
 
Miscellaneous Guidelines
 
Always use <?php and ?>. Never use short tags!
SMF uses procedural programming for most things. If you are not creating an entire class, please do not use object oriented programming (OOP). Future versions of this document will include guidelines for writing OOP PHP code.
Use single quotes. You may use double quotes when you want to concatenate a variable, but should only be used in smaller strings.
Free as many resources as possible. Free db_query() calls as often as possible, unless it is towards the end of the operation of the ENTIRE script.
Do not use deprecated features. Nor should you use features that don't exist in the minimum version.
 
Example of proper PHP:
 
<?php
// Copyright © 2007: Joshua Dickerson
 
foo_bar('x', 'woot');
if (empty($_REQUEST['bla']))
{
require_once('some_file.php');
have_fun();
}
 
// Declare a function.
function foo_bar ($arg, $arg1, $arg2 = false)
{
global $modSettings, $context;
static $counter;
 
if ($arg2)
ex_of_calling();
elseif ($arg)
$foo = array();
 
foreach ($arg as $key => $value)
$arg2 = $key;
 
while ($arg1)
{
do_something();
fooBar();
}
 
$abc = 123;
$woot = 098;
$yawie = 12;
}
?>


===Proper PHP Example===
{{code|1=<nowiki><?php
/**
  * This file contains some functions
  * This comment will become part of the documentation
  *
  * @copyright: 2007 Author <[email protected]>
  */
foo_bar('x', 'woot');
if (empty($_REQUEST['bla']))
{
require_once('some_file.php');
have_fun();
}
/**
  * Declare a function.
  */
function foo_bar ($arg, $arg1, $arg2 = false)
{
global $modSettings, $context;
static $counter;
if ($arg2)
ex_of_calling();
elseif ($arg)
$foo = array();
foreach ($arg as $key => $value)
$arg2 = $key;
while ($arg1)
{
do_something();
fooBar();
}
$abc = 123;
$woot = 098;
$yawie = 12;
}
?></nowiki>}}


==Output==
==Output==
We have a lot of goals for output. Semantic markup, accessible output, usable output, XHTML 1 or HTML 4.01 valid, and CSS 2 valid. That can be a bit confusing. To break it down – semantic markup means that the tags are used in a manner that make sense to a human and machines (ie search engines). Like headings used for headings, div used to divide sections, p used for paragraphs, etc. It also must validate in the document type. Whether that be XHTML or HTML. The CSS files also must be valid. There are a lot of browsers out there that accept mistakes/kludges in markup, we don't. The accessible part is a little less simple. It means that your markup should be all of the above including the ability for it to change easily for people with impairments. Font size, screen size, etc are things that need to be thought about.
Simple Machines Forum has a lot of goals for output, including [http://en.wikipedia.org/wiki/Semantic_HTML semantic markup], [http://en.wikipedia.org/wiki/Accessibility accessible] output, usable output, valid [http://en.wikipedia.org/wiki/HTML5 HTML 5], and valid [http://jigsaw.w3.org/css-validator CSS3]. This can be a bit confusing. To clarify, semantic markup means that the tags are used in a manner that make sense to humans and machines (like search engines). Use heading tags for headings, div tags to divide sections, p tags for paragraphs, etc. Markup must also validate in the document type. The CSS must also be valid. There are a lot of browsers out there that accept mistakes/kludges in markup. Simple Machines Forum does not. The accessible part is a little less simple. It means that markup should be all of the above, plus it should have the ability to change easily for people with physical impairments. Font size, screen size, etc. should be considered.
 
All output should be contained inside a template!
echo
 
Simple Machines uses one thing and one thing only to output information. We do not use print() or heredoc2. We only use echo. It is not a function, it is a language construct. So, you don't need parenthesis around it's output. As well, you can pass an unlimited number of arguments to it.
Send multiple arguments with the use of commas instead of concatenation (using periods)
Place a space after the comma, not before.
Put line breaks inside of the quotes. There is no need to use “\n”.
PHP whitespace and markup whitespace do not relate. When you want your output to be indented, you need to add tabs. Your PHP/echo statements should still line up with the function and other statements that they are in as per the PHP guidelines.
Example of proper usage of echo:
 
// Using a long string with no variables.
echo 'This is our very long string. We don\'t need any variables';
 
if ($code)
echo $foobar;
else
echo 'This is to show you what concatenation looks like
', $txt['see'], 'what I mean by putting line breaks inside of quotes';


// Short string with variable.
'''All output should be contained inside a template!'''
echo "this $is a $short $string";


// Proper indentation and spacing.
===echo===
if ($woot)
Simple Machines Forum uses one thing and one thing only to output to the browser &ndash; <code>echo</code>. <code>print()</code>, <code>heredoc</code>, and <code>nowdoc</code> should not be used. <code>echo</code> is not a function; it is a language construct. So, it does not require parenthesis around its input. Also, it accepts an unlimited number of arguments.
{
* Send multiple arguments with the use of commas instead of concatenation (using periods).
echo '
* Place a space after the comma, not before.
<div>
* Put line breaks inside of the quotes. There is no need to use <code>"\n"</code>.
w00t!';
* PHP whitespace and markup whitespace do not relate. When output should be indented, tabs should be added. <code>echo</code> statements should still line up with the function and other statements that they are in as per the PHP guidelines.


if ($woot % 2 == 0)
====Proper Echo Example====
echo '<br />
{{code|1=<nowiki> // Using a long string with no variables.
woot w00t woot';
echo 'This is our very long string. We don\'t need any variables';
if ($code)
echo $foobar;
else
echo 'This is to show you what concatenation looks like
', $txt['see'], 'what I mean by putting line breaks inside of quotes';
// Short string with variable.
echo "this $is a $short $string";
// Proper indentation and spacing.
if ($woot)
{
echo '
<div>
w00t!';
if ($woot % 2 == 0)
echo '
<br />
woot w00t woot';
echo '
</div>';
}</nowiki>}}


echo '
====Improper Echo Example====
</div>';
{{code|1=<nowiki> // DO NOT DO IT LIKE THIS!
}
echo "$var";
Example of improper usage of echo:
echo "output";
echo <<<EOD
heredoc $stupid heredoc
EOD;
print "bla \'bla\' bla";
echo 'See what I mean by line breaks?' . "\n",
'Look at how bad this looks' . "\n" .
'compared to just putting the line breaks in quotes.';</nowiki>}}


// DO NOT DO IT LIKE THIS!
===Usable & Accessible===
echo "$var";
These are two distinctly different and important terms that are rarely given too much thought. SMF has many types of users, and Simple Machines is devoted to making it possible for all users to access a page. Thus, differences between users must be considered. Making a page accessible does not mean that it shouldn't look good. Keeping these thoughts in mind should help achieve a usable and accessible page.
echo "output";
* A page should look and sound as good as possible. Remember, there are users out there that use screen readers.
echo <<<EOD
* Some users may have a 21" monitor with a high resolution. Other users may be reading on a mobile device with a 2" screen and no graphics.
heredoc $stupid heredoc
* A lot more users than expected disable JavaScript. Think about how many people might do so to avoid popups or ads.
EOD;
print "bla \'bla\' bla";
echo 'see what I mean by line breaks' . "\n",
"look at how bad this looks" . "\n" .
"compared to just putting the line breaks in quotes";
===Usable AND Accessible!===


These are two distinctly different and important terms but are rarely thought about.
Making a page accessible does not mean that it shouldn't look good. The guidelines below will help you to achieve an accessible page.
We have many types of users. We are devoted to making it possible for all users to access a page. Thus, you have to consider differences between users. A page should look and sound good as best you can. Remember, there are users out there that use screen readers. You might have a 21” monitor with a high resolution. Other users may be reading your page on a mobile device with a 2” screen and no graphics. A lot more users than you may think don't have JavaScript enabled. Think about how many people might disable JavaScript so they don't get popups or ads.
===Graceful Degradation===
===Graceful Degradation===
* All browsers should be able to use a page regardless of their JavaScript settings, screen size, operating system, browser version, etc.
* What can not be made to look pretty with JavaScript or CSS due to the browser should still work and look as good as possible.


All browsers should be able to use a page regardless if JavaScript is enabled, screen size, operating system, browser version, etc.
What can't be made to look pretty with JavaScript or CSS due to the browser should still work and should look as good as possible.
===HTML===
===HTML===
* HTML is used to define the structure of a document, not the presentation (styling).
* Use HTML 5.
* Usually, a list should be used for menus.
* Use <nowiki><p></nowiki> for paragraphs. Use <nowiki><br /></nowiki> only for a single line break. Additional necessary space should be created through extra CSS margins.
* Do not use <code><a name=”anchor”></code> for anchors. Use <nowiki><{tag} id=”anchor”></nowiki>, where {tag} is usually a header tag, since all ids are unique they act as anchors.
* Although <nowiki><b></nowiki>, <nowiki><i></nowiki>, <nowiki><big></nowiki>, <nowiki><small></nowiki>, <nowiki><tt></nowiki> are not deprecated, they are strictly for presentation. They serve no purpose other than to make output look different. To show emphasis on text, consider using <nowiki><strong></nowiki> or <nowiki><em></nowiki>. To create a heading, consider using <nowiki><h#></nowiki>.
* Here are some commonly used deprecated tags that should not be used:
** <nowiki><s></nowiki> is often used to signify deleted text. Instead, consider using <nowiki><del></nowiki> and <nowiki><ins></nowiki>. If the strike through is only necessary for presentation, considering using the CSS text decoration <code>"text-decoration: line-through;"</code>.
** Do not use <nowiki><pre></nowiki> for code snippets. There are the <nowiki><code></nowiki> and <nowiki><sample></nowiki> tags for that.
** Perhaps the most commonly used deprecated tag is <nowiki><font></nowiki>. This tag has no semantic value. Use <nowiki><span></nowiki> instead.
** Internet Explorer does not support <nowiki><q></nowiki> or <nowiki><button></nowiki>. Do not use them.
* Tables are for tabular data! Think of a table as a spreadsheet. Would the data work well in a spreadsheet? Do not use a table simply to make layout easier.
* Use <nowiki><th></nowiki> and <nowiki><caption></nowiki> to define the data in the table.
* Forms are a block level tag. They do not require a wrapping div.
* Related fields should be grouped with a <nowiki><fieldset></nowiki> tag. All fieldsets should have a legend
* All form fields should have a label using the <nowiki><label></nowiki> tag.
* Related options in a select box should be grouped using the <nowiki><optgroup></nowiki> tag
* When creating a list of form controls, it is usually best to use a definition list <nowiki><dl></nowiki>. Define the label with <nowiki><dt></nowiki> and the control with <nowiki><dd></nowiki>.
* Never use a reset button. One mistaken click will cause the entire form to disappear!


HTML is used to define the structure of a document, not the presentation (make this bold, this small, this big).
Use HTML 4.01 or XHTML 1.0 transitional/strict doctype. Aim for strict.
Usually a list should be used for menus.
Use &lt;p&gt; for paragraphs. Use &lt;br /&gt; only for a single line break. Two or more define a paragraph so use that. If you need more space in between paragraphs use extra margin through CSS. Don't use &lt;p&gt; when you need 3 or more line breaks, but don't use &lt;br /&gt; when you need 2 line breaks. You should not use 3 line breaks in anything except user submitted text.
Do not use &lt;a name=”anchor”&gt; for anchors. Use &lt;{tag} id=”anchor”&gt; since all ids are unique they act as anchors. Where {tag} is usually a header tag.
Although &lt;b&gt;, &lt;i&gt;, &lt;big&gt;, &lt;small&gt;, &lt;tt&gt; are not deprecated, you should understand that they are strictly for presentation. They serve no purpose other than to make your output look different. If you want to show emphasis on text, consider using &lt;strong&gt; or &lt;em&gt;. If you want to create a heading, consider using &lt;h#&gt;.
Here are some commonly used deprecated tags that should not be used:
You may wish to show text with a strike through it. You may be using &lt;s&gt; to signify that it is for deleted text. Instead, consider using &lt;del&gt; and &lt;ins&gt;. If you are only striking it for presentation, considering using the CSS text decoration “text-decoration: line-through;”.
Do not use &lt;pre&gt; when you really want to show a code snippet. There are the &lt;code&gt; and &lt;sample&gt; tags for that.
Perhaps the most commonly used deprecated tag is &lt;font&gt;. This tag has no semantic value. Next time you are thinking of using &lt;font&gt;, use &lt;span&gt;.
Internet Explorer does not support &lt;q&gt; or &lt;button&gt;. Do not use them.
Tables are for tabular data! Think of a table as a spreadsheet. Would your data work well in a spreadsheet? Are you only using a table because it makes it easier to layout data?
Use &lt;th&gt; and &lt;caption&gt; to define the data in the table.
Forms are a block level tag. They do not require to be wrapped by a div.
Related fields should be grouped with a &lt;fieldset&gt; tag. All fieldsets should have a legend
All form fields should have a label using the &lt;label&gt; tag.
Related options in a select box should be grouped using the &lt;optgroup&gt; tag
When creating a list of form controls, it is usually best to use a definition list &lt;dl&gt;. Define the label with &lt;dt&gt; and the control with &lt;dd&gt;.
Never use a reset button. One mistaken click will cause the entire form to disappear!
===CSS===
===CSS===
CSS is used to define the presentation of a document, not the structure. Do not be afraid of CSS. It can make changing a lot of elements of a page a lot faster. It can also decrease the size of your output. It can also be used to change styles based on the user's interface.
* Use the BSD/Allman indentation style.
* Try to avoid inline styles and useless class names, such as <code>bigred</code>. Another user may decide that the text needs to be normal sized but bold and blue.
* Use CSS shorthand as often as possible. Here is an [http://www.456bereastreet.com/archive/200502/efficient_css_with_shorthand_properties excellent article] on this subject from http://456BereaStreet.com.
* Do not do browser sniffing. The proper alternative is to use feature sniffing.
* If a value is 0, do not use a value type (px, em, etc).
* IE conditional comments may be necessary, but use them sparingly.


CSS is used to define the presentation of a document, not the structure.
===JavaScript===
Don't be afraid of CSS. It can make changing a lot of elements of a page a lot faster. It can also decrease the size of your output. It can also be used to change your styles based on the user's interface.
* Simple Machines Forum JavaScript guidelines use the same indentation and whitespace guidelines as PHP.
Use the BSD/Allman indentation style.
* Never alter the prototype of <code>Object</code>.
Try to avoid in-line styles, and useless class names such as ‘bigred’, another user may decide that the text needs to be normal sized, but bold and blue.
* Avoid global objects. Use the <code>var</code> keyword in all functions. Put stuff in the <code>smf</code> namespace/object. Large mods can have their own namespace if they need to.
Only use pseudo classes for links. Internet Explorer 6 and below don't support them.
* Avoid <code>eval()</code>, including hidden ones. <code>eval()</code> is allowed in very specific situations, such as parsing JSON, but it shouldn't be used anywhere else. Hidden <code>eval()</code>s are something like <code>onclick = "function();"</code>. Instead, just use <code>onclick = function;</code>.
Use CSS shorthand as often as possible. An excellent article on this can be found on 456BereaStreet.com.
* Do not browser detect. Instead, use feature detection. if possible, do feature detection outside of a function.
Do not do browser sniffing. The proper alternative is to use feature sniffing.
* Do not do calculations in the 2nd part of a <code>for</code> loop.
If a value is 0, do not use a value type (px, em, etc).
* Avoid the <code>this</code> keyword, because what it refers to can be unpredictable. Use it only in functions that will be run only by an event, when the alternative is messing around with the <code>Event</code> object.
Box model:
* Use regular expressions – they are faster than most JavaScript string testing functions.
This is where a correct doctype comes in.
* Use object literal notations. It's quick and simple.
IE < 6 uses IE box model.
IE >=6 uses W3C when a correct doctype is set.
You may use IE condocsditional comments. Use them sparingly.
JavaScript
 
Our JavaScript guidelines use the same indentation and whitespace guidelines as PHP.
Never alter the prototype of Object.
Avoid global objects. Use the var keyword in all functions. Put stuff in the smf namespace/object. Large mods can have their own namespace if they need to.
Avoid eval(), including hidden ones. eval() is allowed in very specific situations, such as parsing JSON, but it shouldn't be used anywhere else. Hidden eval()s are something like onclick = "function();". Instead, just use onclick = function;
Don't browser detect, instead use feature detection. And if possible, do feature detection outside of a function.
Don't do calculations in the 2nd part of a for loop. for (var i = 0; i < theArray.length; i++) -> for (var i = 0, l = theArray.length; i < l; i++)
Avoid the this keyword, because what it refers to can be unpredictable. Use it only in functions that you know will be run only by an event, when the alternative is messing around with the Event object. More info on the this keyword.
Avoid string concatenation. If you need to join many strings, put them in an array and use the join method.
Use use regular expressions – they're faster than most JavaScript string testing functions.
Use object literal notations. It's quick and simple.


==Security==
==Security==
Security
Simple Machines prides itself on its security history and would like to keep it that way. Here are several guidelines to help keep security tight.


Simple Machines prides itself on its security history. We would like to keep it that way. We have added several guidelines to keep security tight.
===Are you my SMF?===
Are you my SMF?
The following is a simple, effective solution to make sure that a file is being used only on the intended system and only by SMF. It should appear at the very beginning of a file just after the copyright/license block. The output of die() may be changed, but it isn't recommended.


We have come up with a simple, but effective solution to make sure that your file is being used only on your system and only by SMF.
====SMF Check Example====
The example below defines exactly how this check should appear. It should appear at the very beginning of your file, just after the copyright/license block. You may change what is output on die() but it isn't recommended.
if (!defined('SMF'))
Example of SMF check:
die('Hacking attempt...');


if (!defined('SMF'))
===Wash those variables!===
die('Hacking attempt...');
There's no telling where they've been! Everything that comes from a user can be a potential security risk. After all, there is no way to tell if that user is a sweet old Granny or some crazed hacker bent on destroying the web site. All integers should be defined as integers before they are used. That includes array keys and values. Does that mean that every <code>$_REQUEST</code> variable has to be cast to an integer? No. That means that <code>$_REQUEST</code> variables that should be an integer must be cast to an integer.
Wash those variables, you don't know where they've been!


Everything that comes from a user can be a potential security risk. After all, you don't know if that user is your sweet old Granny, or some crazed hacker hell bent on destroying your website.
====Casting Example====
All integers should be defined as integers before you start working with them. That includes array keys and values. Does that mean that you have to cast every $_REQUEST variable to an integer? No. That means that you must cast all $_REQUEST variables that should be an integer to an integer.
{{code|1=<nowiki> $_GET['foo'] = (int) $_GET['foo'];
Example of casting to int:
$bar = array (
'my_fav' => (int) $_POST['bar]['my_fav'],
'ghost' => (int) $_GET['boo'],
);
// (int) $var and settype($var, 'int') do the same thing.
$id_groundup = (int) $id_groundup;
$id_yo_momma = settype($id_yo_momma, 'int');</nowiki>}}


$_GET['foo'] = (int) $_GET['foo'];
All variables being passed to the database must be escaped! This is a favorite exploit among hackers — SQL injection. Does that mean that every <code>$_REQUEST</code> variable should be escaped? Yes, but there is a solution for that. In QueryString.php, there is a function called <code>cleanRequest()</code>. It escapes all <code>$_REQUEST</code> variables at once. That means that <code>$_REQUEST</code> variables that are used in output need to be un-escaped with <code>stripslashes()</code>.
$bar = array (
'my_fav' => (int) $_POST['bar]['my_fav'],
'ghost' => (int) $_GET['boo'],
);
// (int) $var and settype($var, 'int') do the same thing.
$id_groundup = (int) $id_groundup;
$id_yo_momma = settype($id_yo_momma, 'int');
All variables being passed to the database must be escaped! This is a favorite exploit among hackers — SQL injection. Does that mean that you should escape every $_REQUEST variable sent to you? Yes, but we have a solution for that. In QueryString.php, there is a function called cleanRequest(). It escapes all $_REQUEST variables for you. Although, that means when you are working with $_REQUEST variables, you need to un-escape them with stripslashes().
The permission system


Do not hard code the groups that you want to give access to. Use allowedTo() and isAllowedTo() where allowedTo() should be used for a basic check and isAllowedTo() should be used as a check/error combination.
===The Permission System===
When you want to get a list of boards a user has a permission to, use boardsAllowedTo().
Membergroups should not be hardcoded in order to give them special access. Use <code>allowedTo()</code> and <code>isAllowedTo()</code>, where <code>allowedTo()</code> is a basic check and <code>isAllowedTo()</code> is a check/error combination. Use <code>boardsAllowedTo()</code> to get a list of boards a user has a permission to.
Session checks


Before you start to work with input passed through a form from a user, you should always check their session.
===Session checks===
Whenever you have an action in the administration center, use validateSession() to ensure the user is who they say they are. Note that adminIndex() will do this for you.
Before using input passed through a form from a user, their session should always be checked. Use <code>validateSession()</code> before actions in the administration center to ensure the user is who they say they are. Note that <code>adminIndex()</code> will do this.


[[Category:Developing SMF]]
{{Developing SMF}}
<noinclude>[[Category:Customizing SMF]]
[[Category:Developing SMF]]</noinclude>

Latest revision as of 08:24, 4 September 2015

Simple Machines prides itself on code that is uniform and easy to read. To preserve these qualities, and to maintain performance and reduce the risk of introducing certain types of bugs, the SMF Team maintains coding guidelines to be used when writing customizations (mods/themes) as well as tools and core SMF code. Although it is not always possible to follow all guidelines exactly, breaking them should be a last resort.

Once you understand these guidelines, you should better understand the SMF code.

Preface

This document is meant for semi-experienced users. As such, it does not define many basic terms such as CSS, HTML, PHP, and MySQL. It is better to familiarizing oneself with those topics before continuing with these guidelines. The term ‘foobar’ is used throughout this document as a placeholder for real variable and function names.

Please see the SMF Coding Discussion board in the SMF Community Forums for answers to further questions. The function database contains additional information about the files, functions, and variables described in this document.

This document is free for distribution. Please translate this to as many languages as possible.

Model View Controller (MVC)

SMF is based on a Model-View-Controller (MVC) architecture which separates content and presentation. The software uses the action present in the URL and the file associated with that action to function as the controller. Various loading and processing functions serve as the models, and the many theme and template functions make up the views.

Each group of actions should have their own controller file. For instance, admin actions use Admin.php. Supporting functions and/or functions that are used in multiple controllers should be placed in a model file. In the case of Admin.php we use Subs-Admin.php. The last piece of the puzzle is to create a view file – Admin.template.php.

The view is divided into two parts – structure (PHP & HTML) and presentation (CSS). Although, not all templates have their own CSS file – that would be overkill. Structure is then split into two parts – template functions and a separate language file. If you're looking for the various files, you can find controller and model files in the 'Sources' directory, the view files in the 'Themes' directory, and the language files in the SMF default theme directory in a sub-directory called 'languages.' The actual locations of these directories may vary across SMF installations, but they default to the forum's root directory.

Naming Conventions

Code for any Simple Machines product should use the following naming conventions.

Descriptive Naming

  • The name of the variable or function should describe what it is or does. For instance, use $message_settings instead of $mset.
  • The name of the variable or function should signify what the object is being used for, not where it is to be used.
  • English should be used as the default language when choosing a name for variables or functions.

Camel Case and Underscores

  • Underscores ($foo_bar) or camelCase ($fooBar) should be used.
  • Do not use camel case when naming tables, columns, or indexes in databases. They do not work in all database systems.

Database

  • When a column is an ID, it should prefixed with ‘id_’ as in ‘id_member’.
  • Tables with the purpose of logging should be prefixed with ‘log_’ as in ‘log_errors’.

Files

  • When displaying an index of information to a user such as BoardIndex.php and MessageIndex.php, the file name should end with 'Index'.
  • A file that is used for the management of a feature like members should be prefixed with ‘Manage’. For instance, SMF's file is named ManageMembers.php.
  • Files that are not the controller file for an action, but instead contain many functions that can be used in several files, should be prefixed with 'Subs-'. For instance, SMF's posting functions are placed in a file called Subs-Post.php.
  • Classes should have their own file, prefixed with 'Class-'.

Cascading Style Sheets (CSS)

  • ID and class names should be lower case.
  • ID and class names should always describe what they do, not where they are to be used.

CSS Examples


 /* WRONG! This class name tells where the element goes. */
 .rightmenu
 {
 }
 
 /* CORRECT! This class name tells what the element is or does. */
 .profilemenu
 {
 }

Database

While SMF 1.1.x only supports MySQL, SMF 2.0 supports multiple databases. Following these guidelines is extremely important to make sure that remains so.

Functions

  • Do not use database-specific functions to send a query to the database (i.e. - mysql_query() for MySQL). Use $smcFunc['db_query']().
  • Do not use database-specific functions to handle query results (i.e. - mysql_fetch_array() or mysql_fetch_assoc() in MySQL). Most of the time, the associative array returned by $smcFunc['db_fetch_assoc']() should be used. In rare cases like when using list(), $smcFunc['db_fetch_row']() may be used.
  • Always use $smcFunc['db_free_result']() to free the resource when they are no longer needed.

Queries

Queries have the ability to make a forum run fast or to cripple it. It all depends on how the query is designed. Queries should be optimized as much as possible.

  • Queries should never be in the template files.
  • Most of the time it is best to use joins instead of using multiple queries or subselects. Sometimes this is not the case. Simple benchmarking will reveal the differences.
  • Do not use UNION, SET PASSWORD, BENCHMARK, subselects, or comments in a query.
  • Use LIMIT whenever the WHERE clause contains a column that does not have a UNIQUE index – to include primary keys.
  • SELECT * should not be used. Queries should only select columns that are needed.
  • Do not use shorthand INNER JOIN, as it may not be supported in all database systems.
  • All commands (like SELECT, INSERT, REPLACE, UPDATE, DELETE, etc.) and keywords (WHERE, AND, OR, LIMIT, FROM, JOIN, AS, ON, etc.) should be capitalized.
  • When using more than one table in a query, use an alias for the table name.
  • Always use {db_prefix} before the table name.
  • Never use reserved words.
  • Do not add the database name to tables.
  • All comments should be before the call to $smcFunc['db_query'](). There should be no comments inside of queries.
  • Do not rely on the default value. When performing an INSERT, columns for which there is no value should be excluded.

Whitespace

Whitespace is important in making code easier to read and follow. Whitespace should be used in the following situations.

  • Use one LF after $smcFunc['db_query']('', '.
  • Indent once past the base of the query.
  • Use one space after each keyword, column name, and table name.
  • Do not use spaces when using a function such as COUNT(column).
  • Each of the following keywords should be on their own line: SELECT, DELETE, UPDATE, FROM, JOIN, LEFT JOIN, WHERE, AND, OR, GROUP BY, ORDER BY, LIMIT, etc.

Exception: when AND & OR are used in a sub-condition, they do not need to be on their own line.

Query Example

 // Get their name and part of their address (excuse the wrapping)
 $result = $smcFunc['db_query']('' ,'
     SELECT ppl.first_name, ppl.last_name, add.city, add.address
     FROM {db_prefix}people as ppl
          LEFT JOIN {db_prefix}addresses as add ON (add.id_address = ppl.id_address)
     WHERE ppl.id_person = {int:person}
          AND (ppl.middle_name = 'foo' OR ppl.suffix != 'jr')
          AND {bool:condition}',
     array(
         'person' => $id_person,
         'condition' => $condition,
     )
 );

Schema

  • All tables should use the {db_prefix}.
  • Tables should work with HEAP or MyISAM. Do not expect a user to have InnoDB or any other engine enabled.
  • If a column has no reason to ever be NULL, specify NOT NULL. This saves space in the table data.
  • Use default values whenever possible. Always assume that those values may be used at some point.
  • Use the smallest data type possible, but remember that it needs to scale. Come up with reasonable maximums for IDs, and that will be the maximum size of your column. Use a corresponding column type.
  • Remember that using an UNSIGNED number will nearly double the amount of rows allowed. Use UNSIGNED when are you defining an ID.
  • Primary keys are strongly recommended.

Schema Example

 CREATE TABLE {db_prefix}mountains
 (
     id_mountain smallint(5) unsigned NOT NULL auto_increment,
     name varchar(25) NOT NULL default '',
     date_found int(10) unsigned NOT NULL default '0',
     PRIMARY KEY (id_mountain),
     KEY found(date_found)
 ) TYPE = MyISAM;

PHP

Whitespace

  • Use the BSD/Allman indentation style.
  • Use Unix line feeds (LF) instead of carriage returns like the old Mac® style (CR) and not a combo like Windows® (CR+LF). That does not mean use Unix indentation style.
  • No whitespace at the end of lines.
  • Use tabs, not spaces, for proper indentation.
  • There is no need to use braces (curly brackets) for one line of code after a control structure.
  • Use braces (curly brackets) for switch ... case and every other time there are multiple statements.
  • Do not use a space between function names and ();. So, use fooBar(); and not fooBar ();.
  • Spaces should be before and after an equal sign. For example $var = 'foo';.
  • When many common assignments are being done, it is common to use more space so that all of the assignments align with each other. This is acceptable.
  • There should be no closing ?> at the end of the files.
  • Each statement should be on its own line.
  • Use one space between control structures and parenthesis such as if (), elseif (), for (), while (), etc.
  • Use one space after language constructs such as echo, list, require, etc.
  • Do not indent statements in the global scope (not inside of a class, function, statement, etc.).
  • Every argument, except the last, in an argument list should have a space after the comma.
  • Use one space before and after the . when concatenating.

Functions & Language Constructs

  • Arguments with default values go at the end of the argument list in the function definition. For example, function foo ($bar, $var = true, $arg = 'foobar');.
  • Wrapper functions (functions that do nothing more than call another function) should not be used.
  • Use isset() instead of array_key_exists().
  • Use empty() instead of isset() && $var != '' && $var != 0 && $var != false.
  • Use include_once() instead of include() and require_once() instead of require(). Code that needs to run more than once should be inside of a function.

Variables

  • Initialize all variables.
  • Although there may be the rare case where a constant is desired, they should be used sparingly. Variables intended for the global scope should be declared with global. When constants are necessary, they should be uppercase.
  • There are some special variables such as $modSettings, $context, $sourcedir, etc. These variables should be used before creating new ones.
  • $_GET and $_POST are available via $_REQUEST. It does not make a difference in terms of security to know where the data is coming from since all user data is dirty (see Security).
    • All $_REQUEST variables have been escaped. They should be unescaped in order to be used in normal content.
    • All $_GET variables have been modified with htmlspecialchars__recursive(). Undoing the special characters is necessary to use them in plain text.
  • It is usually best to use an associative array instead of numeric.
  • Avoid internal type changing/conflicts. PHP won't mind, but it will become confusing to keep track of that variable. For example, do not do $var = 'foo'; $var = $var == 'foo' ? true : false;.

Error Handling

  • All code should be E-STRICT compatible.
  • @ should almost never be used to silence an error. If an error is expected, it should be checked for first. For instance, when including a file, check to see if it exists if it is possible it does not. Otherwise, use require_once().
  • Simple Machines Forum has its own error handling functions. They should be used to return an error. They can be viewed in Errors.php.

Comments

  • Comment often!
  • Use PHPDoc format.
  • Use comments to describe a block of code or as a placeholder for future code/mods.
  • Comments should be unique per the file and should try to be unique per the entire application.
  • Comments should be kept under 80 characters per line.
  • One line comments should formatted with //, a space, the comment, and then a period.
  • Multiple line comments should use /* */ with each one on its own line.

Comment Examples

 /**
 * This comment will become part of the documentation of the do_something function
 */
 function do_something()
 {
 	// Here goes a one-liner... so a dog and a man walk in to a bar.
 	foobar();
 }
 
 /*
 This is my comment.
 I want to comment some more.
 Keep on commenting.
 */
 echo 'I love Rock & Roll, put another dime in ©';

Miscellaneous Guidelines

  • Always use <?php. Never use short tags!
  • SMF uses procedural programming for most things. Object-oriented programming (OOP) should not be used unless creating an entire class. Future versions of this document will include guidelines for writing OOP PHP code.
  • Use single quotes. Double quotes may be used to concatenate a variable, but should only be used in smaller strings.
  • Free as many resources as possible.
  • Do not use deprecated features or features that do not exist in the minimum version.

Proper PHP Example

<?php
 /**
  * This file contains some functions
  * This comment will become part of the documentation
  *
  * @copyright: 2007 Author <[email protected]>
  */
 
 foo_bar('x', 'woot');
 if (empty($_REQUEST['bla']))
 {
 	require_once('some_file.php');
 	have_fun();
 }
 
 /**
  * Declare a function.
  */
 function foo_bar ($arg, $arg1, $arg2 = false)
 {
 	global $modSettings, $context;
 	static $counter;
 
 	if ($arg2)
 		ex_of_calling();
 	elseif ($arg)
 		$foo = array();
 
 	foreach ($arg as $key => $value)
 		$arg2 = $key;
 
 	while ($arg1)
 	{
 		do_something();
 		fooBar();
 	}
 
 	$abc = 123;
 	$woot = 098;
 	$yawie = 12;
 }
 ?>

Output

Simple Machines Forum has a lot of goals for output, including semantic markup, accessible output, usable output, valid HTML 5, and valid CSS3. This can be a bit confusing. To clarify, semantic markup means that the tags are used in a manner that make sense to humans and machines (like search engines). Use heading tags for headings, div tags to divide sections, p tags for paragraphs, etc. Markup must also validate in the document type. The CSS must also be valid. There are a lot of browsers out there that accept mistakes/kludges in markup. Simple Machines Forum does not. The accessible part is a little less simple. It means that markup should be all of the above, plus it should have the ability to change easily for people with physical impairments. Font size, screen size, etc. should be considered.

All output should be contained inside a template!

echo

Simple Machines Forum uses one thing and one thing only to output to the browser – echo. print(), heredoc, and nowdoc should not be used. echo is not a function; it is a language construct. So, it does not require parenthesis around its input. Also, it accepts an unlimited number of arguments.

  • Send multiple arguments with the use of commas instead of concatenation (using periods).
  • Place a space after the comma, not before.
  • Put line breaks inside of the quotes. There is no need to use "\n".
  • PHP whitespace and markup whitespace do not relate. When output should be indented, tabs should be added. echo statements should still line up with the function and other statements that they are in as per the PHP guidelines.

Proper Echo Example

 // Using a long string with no variables.
 echo 'This is our very long string. We don\'t need any variables';
 
 if ($code)
 	echo $foobar;
 else
 	echo 'This is to show you what concatenation looks like
 	', $txt['see'], 'what I mean by putting line breaks inside of quotes';
 
 // Short string with variable.
 echo "this $is a $short $string";
 
 // Proper indentation and spacing.
 if ($woot)
 {
 	echo '
 <div>
 	w00t!';
 
 	if ($woot % 2 == 0)
 		echo '
 	<br />
 	woot w00t woot';
 
 	echo '
 </div>';
 }

Improper Echo Example

 // DO NOT DO IT LIKE THIS!
 echo "$var";
 echo "output";
 echo <<<EOD
 heredoc $stupid heredoc
 EOD;
 print "bla \'bla\' bla";
 echo 'See what I mean by line breaks?' . "\n",
 	'Look at how bad this looks' . "\n" .
 	'compared to just putting the line breaks in quotes.';

Usable & Accessible

These are two distinctly different and important terms that are rarely given too much thought. SMF has many types of users, and Simple Machines is devoted to making it possible for all users to access a page. Thus, differences between users must be considered. Making a page accessible does not mean that it shouldn't look good. Keeping these thoughts in mind should help achieve a usable and accessible page.

  • A page should look and sound as good as possible. Remember, there are users out there that use screen readers.
  • Some users may have a 21" monitor with a high resolution. Other users may be reading on a mobile device with a 2" screen and no graphics.
  • A lot more users than expected disable JavaScript. Think about how many people might do so to avoid popups or ads.

Graceful Degradation

  • All browsers should be able to use a page regardless of their JavaScript settings, screen size, operating system, browser version, etc.
  • What can not be made to look pretty with JavaScript or CSS due to the browser should still work and look as good as possible.

HTML

  • HTML is used to define the structure of a document, not the presentation (styling).
  • Use HTML 5.
  • Usually, a list should be used for menus.
  • Use <p> for paragraphs. Use <br /> only for a single line break. Additional necessary space should be created through extra CSS margins.
  • Do not use <a name=”anchor”> for anchors. Use <{tag} id=”anchor”>, where {tag} is usually a header tag, since all ids are unique they act as anchors.
  • Although <b>, <i>, <big>, <small>, <tt> are not deprecated, they are strictly for presentation. They serve no purpose other than to make output look different. To show emphasis on text, consider using <strong> or <em>. To create a heading, consider using <h#>.
  • Here are some commonly used deprecated tags that should not be used:
    • <s> is often used to signify deleted text. Instead, consider using <del> and <ins>. If the strike through is only necessary for presentation, considering using the CSS text decoration "text-decoration: line-through;".
    • Do not use <pre> for code snippets. There are the <code> and <sample> tags for that.
    • Perhaps the most commonly used deprecated tag is <font>. This tag has no semantic value. Use <span> instead.
    • Internet Explorer does not support <q> or <button>. Do not use them.
  • Tables are for tabular data! Think of a table as a spreadsheet. Would the data work well in a spreadsheet? Do not use a table simply to make layout easier.
  • Use <th> and <caption> to define the data in the table.
  • Forms are a block level tag. They do not require a wrapping div.
  • Related fields should be grouped with a <fieldset> tag. All fieldsets should have a legend
  • All form fields should have a label using the <label> tag.
  • Related options in a select box should be grouped using the <optgroup> tag
  • When creating a list of form controls, it is usually best to use a definition list <dl>. Define the label with <dt> and the control with <dd>.
  • Never use a reset button. One mistaken click will cause the entire form to disappear!

CSS

CSS is used to define the presentation of a document, not the structure. Do not be afraid of CSS. It can make changing a lot of elements of a page a lot faster. It can also decrease the size of your output. It can also be used to change styles based on the user's interface.

  • Use the BSD/Allman indentation style.
  • Try to avoid inline styles and useless class names, such as bigred. Another user may decide that the text needs to be normal sized but bold and blue.
  • Use CSS shorthand as often as possible. Here is an excellent article on this subject from http://456BereaStreet.com.
  • Do not do browser sniffing. The proper alternative is to use feature sniffing.
  • If a value is 0, do not use a value type (px, em, etc).
  • IE conditional comments may be necessary, but use them sparingly.

JavaScript

  • Simple Machines Forum JavaScript guidelines use the same indentation and whitespace guidelines as PHP.
  • Never alter the prototype of Object.
  • Avoid global objects. Use the var keyword in all functions. Put stuff in the smf namespace/object. Large mods can have their own namespace if they need to.
  • Avoid eval(), including hidden ones. eval() is allowed in very specific situations, such as parsing JSON, but it shouldn't be used anywhere else. Hidden eval()s are something like onclick = "function();". Instead, just use onclick = function;.
  • Do not browser detect. Instead, use feature detection. if possible, do feature detection outside of a function.
  • Do not do calculations in the 2nd part of a for loop.
  • Avoid the this keyword, because what it refers to can be unpredictable. Use it only in functions that will be run only by an event, when the alternative is messing around with the Event object.
  • Use regular expressions – they are faster than most JavaScript string testing functions.
  • Use object literal notations. It's quick and simple.

Security

Simple Machines prides itself on its security history and would like to keep it that way. Here are several guidelines to help keep security tight.

Are you my SMF?

The following is a simple, effective solution to make sure that a file is being used only on the intended system and only by SMF. It should appear at the very beginning of a file just after the copyright/license block. The output of die() may be changed, but it isn't recommended.

SMF Check Example

if (!defined('SMF'))
	die('Hacking attempt...');

Wash those variables!

There's no telling where they've been! Everything that comes from a user can be a potential security risk. After all, there is no way to tell if that user is a sweet old Granny or some crazed hacker bent on destroying the web site. All integers should be defined as integers before they are used. That includes array keys and values. Does that mean that every $_REQUEST variable has to be cast to an integer? No. That means that $_REQUEST variables that should be an integer must be cast to an integer.

Casting Example

 $_GET['foo'] = (int) $_GET['foo'];
 $bar = array (
 	'my_fav' => (int) $_POST['bar]['my_fav'],
 	'ghost' => (int) $_GET['boo'],
 );
 
 // (int) $var and settype($var, 'int') do the same thing.
 $id_groundup = (int) $id_groundup;
 $id_yo_momma = settype($id_yo_momma, 'int');

All variables being passed to the database must be escaped! This is a favorite exploit among hackers — SQL injection. Does that mean that every $_REQUEST variable should be escaped? Yes, but there is a solution for that. In QueryString.php, there is a function called cleanRequest(). It escapes all $_REQUEST variables at once. That means that $_REQUEST variables that are used in output need to be un-escaped with stripslashes().

The Permission System

Membergroups should not be hardcoded in order to give them special access. Use allowedTo() and isAllowedTo(), where allowedTo() is a basic check and isAllowedTo() is a check/error combination. Use boardsAllowedTo() to get a list of boards a user has a permission to.

Session checks

Before using input passed through a form from a user, their session should always be checked. Use validateSession() before actions in the administration center to ensure the user is who they say they are. Note that adminIndex() will do this.



Advertisement: