-
Notifications
You must be signed in to change notification settings - Fork 1
Coding Standards
The Islandora module follows the Drupal coding standards. This will be tested at commit time by the coder module . In order to make things easier try to test your code with the coder module before committing code to the Islandora GIT. There are also some great pages on the Drupal wiki about how to setup your favorite IDE to use the Drupal standards.
Here are a couple ones:
Netbeans - What most people use
VIM
Much can be summed up about the benefits of coding for themers in the document Using the theme layer (Drupal 7.x) or Using the theme layer (Drupal 6.x) on drupal.org.
A well-made Drupal module allows all elements of its presentation to be overridden by the theme of the site on which it is used. In order for this theme layer to be usable, a module must be written to take advantage of it.
Guidelines to note:
- Strongly avoid manually printing HTML tags and use drupal API calls as much as possible. This also helps avoid unnecessary container usage, and helps ensure your module's output fits with the enabled theme's look-and-feel.
- When using module css files, name/structure them properly. see CSS Cleanup (this applies to core and contrib modules)
- Use tools such as CSSLint to check your css http://csslint.net/ (it will hurt your feelings, but help you code better)
- avoid inline css at all costs
- use lowercase letters and dashes to seperate multiple word classes
- always prefix your module class names that are specific to the module with modulename-, or module-submodulename-
- class out fieldsets & fieldnames such as .islandora-mods-description
- use the semantic approach to naming, like classes that illustrate a certain meaning of the element such as .main and .sidebar-one as opposed to presentational or structural naming methods like .right-bar .left-content
- utilize standard classes drupal uses, such as .odd, .even, .clearfix, .title, .element-invisible, .element-hidden, .tabs (see all of the system.*.css files in d7/modules/system/ for available class names)
- use multiple css selector classes in the same element, both generic and specific.. example panels/view output
<div class="panel-pane pane-views pane-slideshow">...</div>
Sources:
- Semantics, Structure and Presentation http://drupal.org/node/464802
- Class Naming - Semantic Approach http://jonrohan.me/guide/css/semantic-css-class-naming/
- Accessible CSS - http://webaim.org/techniques/css/advantage
This page covers the standards for documentation in Islandora code. Most of this page is taken directly from the Drupal Doxygen and comment formatting conventions. There have been some modifications specifically for Islandora. Where there is question refer to the Drupal standards.
There are two types of comments: in-line and headers. In-line comments are comments that are within functions. In Islandora, documentation headers on functions, classes, constants, etc. are specially-formatted comments used to build the API and developer documentation. The system for extracting documentation from the header comments uses the Doxygen generation system, and since the documentation is extracted directly from the sources, it is much easier to keep the documentation consistent with the source code.
There is an excellent Doxygen manual at the Doxygen site. This page describes the Islandora implementation of Doxygen, and our standards for both in-line and header comments.
These standards apply to both in-line and header comments:
- All documentation and comments should form proper sentences and use proper grammar and punctuation.
- Sentences should be separated by single spaces.
- Comments and variable names should be in English, and use US English spelling (e.g., "color" not "colour").
- All caps are used in comments only when referencing constants, for example TRUE
- Comments should be word-wrapped if the line length would exceed 80 characters (i.e., go past the 80th column). They should be as long as possible within the 80-character limit.
Non-header or in-line comments are strongly encouraged. A general rule of thumb is that if you look at a section of code and think "Wow, I don't want to try and describe that", you need to comment it before you forget how it works. Comments should be on a separate line immediately before the code line or block they reference. For example:
// Unselect all other contact categories.
db_query('UPDATE {contact} SET selected = 0');
If each line of a list needs a separate comment, the comments may be given on the same line and may be formatted to a uniform indent for readability.
C style comments (/\* \*/)
and standard C++ comments (//)
are both fine, though the former is discouraged within functions (even for multiple lines, repeat the // single-line comment). Use of Perl/shell style comments (#) is discouraged.
To document a block of code, such as a file, function, class, method, constant, etc., the syntax we use is:
/**
* Documentation here.
*/
Doxygen will parse any comments located in such a block.
/**
* Summary here; one sentence on one line (should not, but can exceed 80 chars).
*
* A more detailed description goes here.
*
* A blank line forms a paragraph. There should be no trailing white-space
* anywhere.
*
* @param $first
* "@param" is a Doxygen directive to describe a function parameter. Like some
* other directives, it takes a term/summary on the same line and a
* description (this text) indented by 2 spaces on the next line. All
* descriptive text should wrap at 80 chars, without going over.
* Newlines are NOT supported within directives; if a newline would be before
* this text, it would be appended to the general description above.
* @param $second
* There should be no newline between multiple directives (of the same type).
* @param $third
* (optional) TRUE if Third should be done. Defaults to FALSE.
* Only optional parameters are explicitly stated as such. The description
* should clarify the default value if omitted.
*
* @return * "@return" is a different Doxygen directive to describe the return value of
* a function, if there is any.
*/
function mymodule_foo($first, $second, $third = FALSE) {
}
* @param $variables
* An associative array containing:
* - tags: An array of labels for the controls in the pager:
* - first: A string to use for the first pager element.
* - last: A string to use for the last pager element.
* - element: (optional) Integer to distinguish between multiple pagers on one
* page. Defaults to 0 (zero). * - style: Integer for the style, one of the following constants:
* - PAGER_FULL: (default) Full pager.
* - PAGER_MINI: Mini pager.
* Any further description - still belonging to the same param, but not part
* of the list.
*
* This no longer belongs to the param.
Lists can appear anywhere in Doxygen. The documentation parser requires you to follow a strict syntax to make them appear correctly in the parsed HTML output:
- A hyphen is used to indicate the list bullet. The hyphen is aligned with (uses the same indentation level as) the paragraph before it, with no newline before or after the list.
- No newlines between list items in the same list.
- Each list item starts with the key, followed by a colon, followed by a space, followed by the key description. The key description starts with a capital letter and ends with a period.
- If the list has no keys, start each list item with a capital letter and end with a period.
- The keys should not be put in quotes unless they contain colons (which is unlikely).
- If a list element is optional or default, indicate (optional) or (default) after the colon and before the key description.
- If a list item exceeds 80 chars, it needs to wrap, and the following lines need to be aligned with the key (indented by 2 more spaces).
- For text after the list that needs to be in the same block, use the same alignment/indentation as the initial text.
- Again: within a Doxygen directive, or within a list, blank lines are NOT supported.
- Lists can appear within lists, and the same rules apply recursively.
/**
* (rest of function/file/etc. header)
*
* @see foo_bar()
* @see ajax.inc
* @see MyModuleClass
* @see MyClass::myMethod()
* @see groupname
* @see http://drupal.org/node/1354
*/
The @see
directive may be used to link to (existing) functions, files, classes, methods, constants, groups/topics, URLs, etc. @see
directives should always be placed on their own line, and generally at the bottom of the documentation header. Use the same format in @see
that you would for automatic links (see below).
* This function invokes hook_foo() on all implementing modules.
* It calls MyClass::methodName(), which includes foo.module as
* a side effect.
Any function, file, constant, class, etc. in the documentation will automatically be linked to the page where that item is documented (assuming that item has a doxygen header). For functions and methods, you must include () after the function/method name to get the link. For files, just put the file name in (not the path to the file).
* Example XML output usage:
* @code
* <xml>
* <tag> example fedora return data </tag>
* </xml>
* @endcode
* Text to immediately follow the code block.
Code examples can be embedded in the Doxygen documentation using @code
and @endcode
directives. Any code in between will be output preformatted.
/**
* @todo Remove this in D8.
* @todo Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
* nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed
* diam voluptua.
*/
To document known issues and development tasks in code, @todo
statements may be used. Each @todo
should form an atomic task. They should wrap at 80 chars, if required. Additionally, any following lines should be indented by 2 spaces, to clarify where the @todo
starts and ends.
// @todo Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
// nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
// sed diam voluptua.
// We explicitly delete all comments.
comment_delete($cid);
@todo
statements in inline comments follow the same rules as above, especially regarding indentation of subsequent comments.
Each file should start with a comment describing what the file does. For example:
/**
* @file
* The theme system, which controls the output of Drupal.
*
* The theme system allows for nearly all output of the Drupal system to be
* customized by user themes.
*/
The line immediately following the @file
directive is a summary that will be shown in the list of all file in the generated documentation. If the line begins with a verb, that verb should be in present tense, e.g., "Handles file uploads." Further description may follow after a blank line.
All functions and methods, whether meant to be private or public, should be documented. A function documentation block should immediately precede the declaration of the function itself. For example:
/**
* Verifies the syntax of the given e-mail address.
*
* Empty e-mail addresses are allowed. See RFC 2822 for details.
*
* @param $mail
* A string containing an email address.
*
* @return
* TRUE if the address is in a valid format, and FALSE if it isn't.
*/
function valid_email_address($mail) {
After the long description, each parameter should be listed with a @param
directive, with a description indented by two extra spaces on the following line or lines. If there are no parameters, omit the @param
section entirely. Do not include any blank lines in the @param
section.
After all the parameters, a @return
directive should be used to document the return value if there is one. There should be a blank line between the @param
section and @return
directive.
If there is no return value, omit the @return
directive entirely.
Functions that are easily described in one line may use the function summary only, for example:
/**
* Converts an associative array to an anonymous object.
*/
function mymodule_array2object($array) {
If the abbreviated syntax is used, the parameters and return value must be described within the one-line summary.
If the data type of a parameter or return value is not obvious or expected to be of a special class or interface, it is recommended to specify the data type in the @param
or @return
directive:
/**
* Executes an arbitrary query string against the active database.
*
* Do not use this function for INSERT, UPDATE, or DELETE queries. Those should
* be handled via the appropriate query builder factory. Use this function for
* SELECT queries that do not require a query builder.
*
* @param object $query
* The prepared statement query to run. Although it will accept both named and
* unnamed placeholders, named placeholders are strongly preferred as they are
* more self-documenting.
* @param array $args
* An array of values to substitute into the query. If the query uses named
* placeholders, this is an associative array in any order. If the query uses
* unnamed placeholders (?), this is an indexed array and the order must match
* the order of placeholders in the query string.
* @param array $options
* An array of options to control how the query operates.
*
* @return DatabaseStatementInterface
* A prepared statement object, already executed.
*
* @see DatabaseConnection::defaultOptions()
*/
function db_query($query, array $args = array(), array $options = array()) {
// ...
}
Primitive data types, such as int or string, are not specified. It is recommended to specify classes and interfaces. If the parameter or return value is an array, or (anonymous/generic) object, you can specify the type if it would add clarity to the documentation. If for any reason, a primitive data type needs to be specified, use the lower-case data type name, e.g. "array". Also, make sure to use the most general class/interface possible. E.g., document the return value of db_select() to be a SelectQueryInterface, not a particular class that implements SelectQuery.
Each class and interface should have a doxygen documentation block, and each member variable, constant, and function/method within the class or interface should also have its own documentation block. Example:
/**
* Represents a prepared statement.
*/
interfaceDatabaseStatementInterfaceextendsTraversable{
/**
* Executes a prepared statement.
*
* @param array $args
* Array of values to substitute into the query.
* @param array $options
* Array of options for this query.
*
* @return
* TRUE on success, FALSE on failure.
*/
public functionexecute($args= array(),$options= array());
}
/**
* Represents a prepared statement.
*
* Default implementation of DatabaseStatementInterface.
*/
classDatabaseStatementBaseextendsPDOStatementimplementsDatabaseStatementInterface{
/**
* The database connection object for this statement DatabaseConnection.
*
* @var DatabaseConnection
*/
public$dbh;
/**
* Constructs a DatabaseStatementBase object.
*
* @param DatabaseConnection $dbh
* Database connection object.
*/
protected function__construct($dbh) {
// Function body here.
}
/**
* Implements DatabaseStatementInterface::execute().
*
* Optional explanation of the specifics of this implementation goes here.
*/
public functionexecute($args= array(),$options= array()) {
// Function body here.
}
/**
* Returns the foo information.
*
* @return object
* The foo information as an object.
*
* @throws MyFooUndefinedException
*/
public functiongetFoo() {
// Function body here.
}
/**
* Overrides PDOStatement::fetchAssoc().
*
* Optional explanation of the specifics of this override goes here.
*/
public functionfetchAssoc() {
// Call PDOStatement::fetch to fetch the row.
return$this->fetch(PDO::FETCH_ASSOC);
}
}
Notes:
- Leave a blank line between class declaration and first docblock.
- Use a 3rd person verb to begin the description of a class, interface, or method (e.g. Represents not Represent).
- For a member variable, use
@var
to tell what data type the variable is. - Use
@throws
if your method can throw an exception, followed by the name of the exception class. If the exception class is not specific enough to explain why the exception will be thrown, you should probably define a new exception class. - Make sure when documenting function and method return values, as well as member variable types, to use the most general class/interface possible. E.g., document the return value of db_select() to be a SelectQueryInterface, not a particular class that implements SelectQuery.
Whenever we interact with Fedora in the comments using either:
@throws
@return
we need to document what is returned on error and what state the Fedora is left in, so that the error can be reported through Drupal instead of failing silently and whoever is calling the API can make a choice about what to do next.
In order to generate the documentation you need the doxygen package installed.
Download this [file|^Doxyfile] to your modules/fedora_repository folder and run the command:
doxygen Doxyfile
after the command finishes running the documentation can be found in documentation/html/index.html
Within the Doxyfile if you change the line:
EXTRACT_ALL = YES
to
EXTRACT_ALL = NO
Then doxygen will only extract information from documented files, instead of trying to extract information from all files.