Coding Guidelines: Difference between revisions From Online Manual

Jump to: navigation, search
No edit summary
mNo edit summary
 
(75 intermediate revisions by 13 users not shown)
Line 1: Line 1:
Simple Machines prides itself on its clean and pure code. This document provides as guidelines for all coding done in relation to Simple Machines including Simple Machines Forum. This includes all development done by the SMF Team and users including customizations (mods/themes), core development, and tools.
{{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.


There may be times when certain guidelines in this document can not be adhered to. This is understandable and these are only meant to be guidelines. They serve to help you and our users to better understand the code put in to SMF.
Once you understand these guidelines, you should better understand the SMF code.


This document is meant for a semi-experienced user. As such, it doesn't define a lot of things which most programmers will know such as CSS, HTML, PHP, and MySQL.
==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.


The term ‘foobar’ (or ‘foo’ & ‘bar’) is used throughout this document as an example. It is not an actual function, variable, or example. It is simply a placeholder. After the section on naming conventions, the examples may not adhere to the naming conventions. They are only examples.
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.
 
If you have any questions about this document, please see the SMF Coding Discussion board in the SMF Community Forums. You may visit the function database for information about files, functions, and variables described in this document. If you have any comments or suggestions about this document, please see the SMF Documentation site.


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


===Model View Controller (MVC)===
==Model View Controller (MVC)==
Simple Machines Forum is built using a “model-view-controller” (MVC) architecture. The controller is the action and file. The model is functions which can be used in a separate action/controller. The view can be considered the output and theme related functions.
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 file. For instance admin actions use Admin.php. All functions which are to be used by functions in that file or other files should use a file for the model. In the case of Admin.php, we use Subs-Admin.php. The last piece of the puzzle is to create a view – admin.template.php.
The view is broken up in to two parts – structure and presentation (CSS). Not all templates have their own CSS file – that would be overkill. Structure is then broken up in to several parts - template functions (*_above() & *_below()), front-end output such as HTML, CSS and JavaScript, and a language file.
These files are broken up in to directories. The following directories are based on the root SMF directory. The view files are in the Themes directory. The model and controller files are located in Sources.
 
===Naming Conventions===
This section describes the naming conventions for files, functions, and variables. The conventions below are ambiguous.
Use Descriptive Names
 
The name should describe what you are using this for. For instance $message_settings instead of $mset.
The name should signify what the object is being used for, not where it is to be used.
Use English as the default language when choosing a name.
Camel Case and Underscores


Use underscores ‘_’ or 1camel case (foo_bar() or fooBar()).
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.
Exception: 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’.
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.
Tables with the purpose of logging should be prefixed with ‘log_’ as in ‘log_errors’.
Files


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’.
==Naming Conventions==
A file that is used for the management of a feature, such as members, should be prefixed with ‘Manage’. For instance ManageMembers.php.
Code for any Simple Machines product should use the following naming conventions.
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.
Classes should have their own file, prefixed with ‘Class-’.
Cascading Style Sheets (CSS)


ID and class names must be lower case.
===Descriptive Naming===
ID and class names should always describe what they do, not where they are 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.
Naming Conventions Examples: IDs & class names
* 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.


/* WRONG WAY TO DO IT! */
===Camel Case and Underscores===
.rightmenu
* 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.
}
/* RIGHT WAY TO DO IT! */
.profilemenu
{
}


===Database===
===Database===
Functions
* 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’.
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']().
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().
Use mysql_free_result() to free the resource.
Queries
 
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 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. 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("
Indent once past the base of the query.
One space after each keyword, column name, and table name.
No space 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. See the example at the end of this section for more information on that.
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.
 
Example of a query:
 
// Get their name and part of their address (excuse the wrapping)
$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__);
 
 
Example of a schema:
 
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
 
Simple Machines uses 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 tabs1.
No need for brackets with one line of code after a control structure
Use brackets for switch ... case and every other time (other than one liners) there are multiple statements.
No space after function name and before (); So no space fooBar();
Space before and after the equal sign. $var = '';
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 extra line after the closing ?>
Each statement should be on its own line
One space after control structures such as if () elseif () for () while () etc
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) (see the example in Appendix B)
Every argument, except the last, in an argument list should have a space after the comma.
When declaring a function, the function name should have a space after it, before the ‘(’. ie function foo ()
One space before and after the ‘.’ when concatenating. (See ‘echo’ for echo concatenation)
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');
===Files===
Wrapper function, or functions that do nothing more than call another function, should not be used
* When displaying an index of information to a user such as BoardIndex.php and MessageIndex.php, the file name should end with 'Index'.
Use isset() instead of in_array()
* 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.
Use empty() instead of isset() && $var != '' && $var != 0 && $var != false
* 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.
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.
* Classes should have their own file, prefixed with 'Class-'.
Variables


Initialize all variables.
===Cascading Style Sheets (CSS)===
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.
* ID and class names should be lower case.
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.
* ID and class names should always describe what they do, not where they are to be used.
$_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.
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 as you start to work with that variable. For example, don't do $var = 'foo'; $var = $var == 'foo' ? true : false;
Error Handling


All code should be E-STRICT compatible.
====CSS Examples====
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().
{{code|1=<nowiki>
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.
/* WRONG! This class name tells where the element goes. */
Comments
.rightmenu
{
}
/* CORRECT! This class name tells what the element is or does. */
.profilemenu
{
}</nowiki>}}


Comment often!
==Database==
Use comments to describe a block of code or as a placeholder for future code/mods.
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.
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 use ‘// ’ - two forward slashes (//) and a space then the text. It should end with a period.
Multiple line comments should use /* */ and each are on their own line.
PHP Example of comments:


// Here goes a one-liner... so a dog and a man walk in to a bar
===Functions===
function do_something()
* 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>.
{
* 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.
foobar();
* Always use <code>$smcFunc['db_free_result']()</code> to free the resource when they are no longer needed.
}


/* This is my comment.
===Queries===
I want to comment some more.
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.
Keep on commenting.
*/
echo 'I love Rock &amp; Roll, put another dime in &copy;';


* 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 <code>UNION</code>, <code>SET PASSWORD</code>, <code>BENCHMARK</code>, subselects, or comments in a query.
* 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.
* <code>SELECT *</code> should not be used. Queries should only select columns that are needed.
* Do not use shorthand <code>INNER JOIN</code>, 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 <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.


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


Always use <?php and ?>. Never use short tags!
* Use one LF after <code><nowiki>$smcFunc['db_query']('', '</nowiki></code>.
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.
* Indent once past the base of the query.
Use single quotes. You may use double quotes when you want to concatenate a variable, but should only be used in smaller strings.
* Use one space after each keyword, column name, and table name.
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 spaces when using a function such as <code>COUNT(column)</code>.
Do not use deprecated features. Nor should you use features that don't exist in the minimum version.
* 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.


Example of proper PHP:
Exception: when <code>AND</code> & <code>OR</code> are used in a sub-condition, they do not need to be on their own line.


<?php
====Query Example====
// Copyright © 2007: Joshua Dickerson
{{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>}}


foo_bar('x', 'woot');
===Schema===
if (empty($_REQUEST['bla']))
{
require_once('some_file.php');
have_fun();
}


// Declare a function.
* All tables should use the <code>{db_prefix}</code>.
function foo_bar ($arg, $arg1, $arg2 = false)
* 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 <code>NULL</code>, specify <code>NOT NULL</code>. This saves space in the table data.
global $modSettings, $context;
* Use default values whenever possible. Always assume that those values may be used at some point.
static $counter;
* 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 <code>UNSIGNED</code> number will nearly double the amount of rows allowed. Use <code>UNSIGNED</code> when are you defining an ID.
* Primary keys are strongly recommended.


if ($arg2)
====Schema Example====
ex_of_calling();
{{code
elseif ($arg)
|1=<nowiki> CREATE TABLE {db_prefix}mountains
$foo = array();
(
    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>}}


foreach ($arg as $key => $value)
==PHP==
$arg2 = $key;


while ($arg1)
===Whitespace===
{
* Use the [http://en.wikipedia.org/wiki/Indent_style#Allman_style_.28bsd_in_Emacs.29 BSD/Allman indentation style].
do_something();
* 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.
fooBar();  
* 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 <code>();</code>. So, use <code>fooBar();</code> and not <code>fooBar ();</code>.
* Spaces should be before and after an equal sign. For example <code>$var = 'foo';</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.
* There should be no closing <code>?></code> at the end of the files.
* Each statement should be on its own line.
* Use one space between control structures and parenthesis such as <code>if ()</code>, <code>elseif ()</code>, <code>for ()</code>, <code>while ()</code>, etc.
* Use one space after language constructs such as <code>echo</code>, <code>list</code>, <code>require</code>, 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 <code>.</code> when concatenating.


$abc = 123;
===Functions & Language Constructs===
$woot = 098;
* 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>.
$yawie = 12;
* Wrapper functions (functions that do nothing more than call another function) should not be used.
}
* Use <code>isset()</code> instead of <code>array_key_exists()</code>.
?>
* Use <code>empty()</code> instead of <code>isset() && $var != <nowiki>''</nowiki> && $var != 0 && $var != false</code>.
* 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.


===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 <code>global</code>. When constants are necessary, they should be uppercase.
* 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.
* <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]]).
** All <code>$_REQUEST</code> variables have been escaped. They should be unescaped in order to be used in normal content.
** 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>.


===Output===
===Error Handling===
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.
* All code should be E-STRICT compatible.
* <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>.
* Simple Machines Forum has its own error handling functions. They should be used to return an error. They can be viewed in Errors.php.


All output should be contained inside a template!
===Comments===
echo
* Comment often!
* Use [http://en.wikipedia.org/wiki/PHPDoc 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 <code>//</code>, a space, the comment, and then a period.
* Multiple line comments should use <code>/* */</code> with each one on its own line.


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.
====Comment Examples====
Send multiple arguments with the use of commas instead of concatenation (using periods)
{{code|1=<nowiki> /**
Place a space after the comma, not before.
* This comment will become part of the documentation of the do_something function
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.
function do_something()
Example of proper usage of echo:
{
// 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>}}


// Using a long string with no variables.
===Miscellaneous Guidelines===
echo 'This is our very long string. We don\'t need any variables';
* Always use <code><?php</code>. 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.


if ($code)
===Proper PHP Example===
echo $foobar;
{{code|1=<nowiki><?php
else
/**
echo 'This is to show you what concatenation looks like
  * This file contains some functions
', $txt['see'], 'what I mean by putting line breaks inside of quotes';
  * 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>}}


// Short string with variable.
==Output==
echo "this $is a $short $string";
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.


// Proper indentation and spacing.
'''All output should be contained inside a template!'''
if ($woot)
{
echo '
<div>
w00t!';


if ($woot % 2 == 0)
===echo===
echo '<br />
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.
woot w00t woot';
* 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 <code>"\n"</code>.
* 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.


echo '
====Proper Echo Example====
</div>';
{{code|1=<nowiki> // Using a long string with no variables.
}
echo 'This is our very long string. We don\'t need any variables';
Example of improper usage of echo:
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>}}


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


These are two distinctly different and important terms but are rarely thought about.
===Usable & Accessible===
Making a page accessible does not mean that it shouldn't look good. The guidelines below will help you to achieve an accessible page.
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.
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.
* A page should look and sound as good as possible. Remember, there are users out there that use screen readers.
Graceful Degradation
* 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.


All browsers should be able to use a page regardless if JavaScript is enabled, screen size, operating system, browser version, etc.
===Graceful Degradation===
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.
* All browsers should be able to use a page regardless of their JavaScript settings, screen size, operating system, browser version, etc.
HTML
* 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 is used to define the structure of a document, not the presentation (make this bold, this small, this big).
===HTML===
Use HTML 4.01 or XHTML 1.0 transitional/strict doctype. Aim for strict.
* HTML is used to define the structure of a document, not the presentation (styling).
Usually a list should be used for menus.
* Use HTML 5.
Use <p> for paragraphs. Use <br /> 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 <p> when you need 3 or more line breaks, but don't use <br /> when you need 2 line breaks. You should not use 3 line breaks in anything except user submitted text.
* Usually, a list should be used for menus.
Do not use <a name=”anchor”> for anchors. Use <{tag} id=”anchor”> since all ids are unique they act as anchors. Where {tag} is usually a header tag.
* 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.
Although <b>, <i>, <big>, <small>, <tt> 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 <strong> or <em>. If you want to create a heading, consider using <h#>.
* 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.
Here are some commonly used deprecated tags that should not be used:
* 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>.
You may wish to show text with a strike through it. You may be using <s> to signify that it is for deleted text. Instead, consider using <del> and <ins>. If you are only striking it for presentation, considering using the CSS text decoration “text-decoration: line-through;.
* Here are some commonly used deprecated tags that should not be used:
Do not use <pre> when you really want to show a code snippet. There are the <code> and <sample> tags for that.
** <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>.
Perhaps the most commonly used deprecated tag is <font>. This tag has no semantic value. Next time you are thinking of using <font>, use <span>.
** Do not use <nowiki><pre></nowiki> for code snippets. There are the <nowiki><code></nowiki> and <nowiki><sample></nowiki> tags for that.
Internet Explorer does not support <q> or <button>. Do not use them.
** Perhaps the most commonly used deprecated tag is <nowiki><font></nowiki>. This tag has no semantic value. Use <nowiki><span></nowiki> instead.
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?
** Internet Explorer does not support <nowiki><q></nowiki> or <nowiki><button></nowiki>. Do not use them.
Use <th> and <caption> to define the data in the table.
* 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.
Forms are a block level tag. They do not require to be wrapped by a div.
* Use <nowiki><th></nowiki> and <nowiki><caption></nowiki> to define the data in the table.
Related fields should be grouped with a <fieldset> tag. All fieldsets should have a legend
* Forms are a block level tag. They do not require a wrapping div.
All form fields should have a label using the <label> tag.
* Related fields should be grouped with a <nowiki><fieldset></nowiki> tag. All fieldsets should have a legend
Related options in a select box should be grouped using the <optgroup> tag
* All form fields should have a label using the <nowiki><label></nowiki> 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>.
* Related options in a select box should be grouped using the <nowiki><optgroup></nowiki> tag
Never use a reset button. One mistaken click will cause the entire form to disappear!
* 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>.
CSS
* Never use a reset button. One mistaken click will cause the entire form to disappear!


CSS is used to define the presentation of a document, not the structure.
===CSS===
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.
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.
* Use the BSD/Allman indentation style.
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.
* 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.
Only use pseudo classes for links. Internet Explorer 6 and below don't support them.
* 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.
Use CSS shorthand as often as possible. An excellent article on this can be found on 456BereaStreet.com.
* Do not do browser sniffing. The proper alternative is to use feature sniffing.
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).
If a value is 0, do not use a value type (px, em, etc).
* IE conditional comments may be necessary, but use them sparingly.
Box model:
This is where a correct doctype comes in.
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.
===JavaScript===
Never alter the prototype of Object.
* Simple Machines Forum JavaScript guidelines use the same indentation and whitespace guidelines as PHP.
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.
* Never alter the prototype of <code>Object</code>.
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;
* 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.
Don't browser detect, instead use feature detection. And if possible, do feature detection outside of a function.
* 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>.
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++)
* Do not browser detect. Instead, use feature detection. if possible, do feature detection outside of a function.
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.
* Do not do calculations in the 2nd part of a <code>for</code> loop.
Avoid string concatenation. If you need to join many strings, put them in an array and use the join method.
* 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.
Use use regular expressions – they're faster than most JavaScript string testing functions.
* Use regular expressions – they are faster than most JavaScript string testing functions.
Use object literal notations. It's quick and simple.
* 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: