| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633 | Writing Code############Understand Elgg's standards and processes to get your changes accepted as quickly as possible... contents:: Contents   :local:   :depth: 1License agreement=================By submitting a patch you are agreeing to license the codeunder a `GPLv2 license`_ and `MIT license`_... _GPLv2 license: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.. _MIT license: http://en.wikipedia.org/wiki/MIT_LicensePull requests=============Pull requests (PRs) are the best way to get code contributed to Elgg core.The core development team uses them even for the most trivial changes.For new features, `submit a feature request <https://github.com/Elgg/Elgg/issues>`__ or `talk to us`_ first and makesure the core team approves of your direction before spending lots of time on code... _talk to us: http://community.elgg.org/groups/profile/211069/feedback-and-planningChecklists----------Use these markdown checklists for new PRs on github to ensure high-quality contributionsand help everyone understand the status of open PRs.Bugfix PRs:.. code:: - [ ] Commit messages are in the standard format - [ ] Includes regression test - [ ] Includes documentation update (if applicable) - [ ] Is submitted against the correct branch - [ ] Has LGTM from at least one core developerFeature PRs:.. code:: - [ ] Commit messages are in the standard format - [ ] Includes tests - [ ] Includes documentation - [ ] Is submitted against the correct branch - [ ] Has LGTM from at least two core developersChoosing a branch to submit to------------------------------The following table assumes the latest stable release is 1.9.============== ====================================Type of change Branch to submit against============== ====================================Security fix   1.8 (Email security@elgg.org first!)Bug fix        1.9Deprecation    1.xMinor feature  1.xMajor feature  masterBreaking       master============== ====================================The difference between minor and major feature is subjective and up to the core team.Commit message format---------------------We require a particular format to allow releasing more often, and with improved changelogs and source history. Justfollow these steps:1. Start with the ``type`` by selecting the *last category which applies* from this list:   * **docs** - *only* docs are being updated   * **chore** - this include refactoring, code style changes, adding missing tests, Travis stuff, etc.   * **perf** - the primary purpose is to improve performance   * **fix** - this fixes a bug   * **deprecate** - the change deprecates any part of the API   * **feature** - this adds a new user-facing or developer feature   * **security** - the change affects a security issue in any way. *Please do not push this commit to any public repo.* Instead contact security@elgg.org.   E.g. if your commit refactors to fix a bug, it's still a "fix". If that bug is security-related, however, the type   must be "security" and you should email security@elgg.org before proceeding. When in doubt, make your best guess   and a reviewer will provide guidance.2. In parenthesis, add the ``component``, a short string which describes the subsystem being changed.   Some examples: "views", "i18n", "seo", "a11y", "cache", "db", "session", "router", "<plugin_name>".3. Add a colon, a space, and a brief ``summary`` of the changes, which will appear in the changelog.   No line may exceed 100 characters in length, so keep your summary concise.   ================================================ ======================================================================================================   Good summary                                     Bad summary (problem)   ================================================ ======================================================================================================   page owners see their own owner blocks on pages  bug fix (vague)   bar view no longer dies if 'foo' not set         updates views/default/bar.php so bar view no longer... (redundant info)   narrows river layout to fit iPhone               alters the river layout (vague)   elgg_foo() handles arrays for $bar               in elgg_foo() you can now pass an array for $bar and the function will... (move detail to description)   removes link color from comments header in river fixes db so that... (redundant info)   requires non-empty title when saving pages       can save pages with no title (confusingly summarizes old behavior)   ================================================ ======================================================================================================4. (recommended) Skip a line and add a ``description`` of the changes. Include the motivation for making them, any info   about back or forward compatibility, and any rationale of why the change had to be done a certain way. Example:       We speed up the Remember Me table migration by using a single INSERT INTO ... SELECT query instead of row-by-row.       This migration takes place during the upgrade to 1.9.   Unless your change is trivial/obvious, a description is required.5. If the commit resolves a GitHub issue, skip a line and add ``Fixes #`` followed by the issue number. E.g.   ``Fixes #1234``. You can include multiple issues by separating with commas.   GitHub will auto-close the issue when the commit is merged. If you just want to reference an issue, use   ``Refs #`` instead.When done, your commit message will have the format:.. code::	type(component): summary	Optional body	Details about the solution.	Opportunity to call out as breaking change.	Closes/Fixes/Refs #123, #456, #789Here is an example of a good commit message:.. code::    perf(upgrade): speeds up migrating remember me codes    We speed up the Remember Me table migration by using a single INSERT INTO ... SELECT query instead of row-by-row.    This migration takes place during the upgrade to 1.9.    Fixes #6204To validate commit messages locally, make sure ``.scripts/validate_commit_msg.php`` is executable, and make a copyor symlink to it in the directory ``.git/hooks/commit-msg``... code::    chmod u+x .scripts/validate_commit_msg.php    ln -s .scripts/validate_commit_msg.php .git/hooks/commit-msg/validate_commit_msg.phpRewriting commit messages-------------------------If your PR does not conform to the standard commit message format, we'll ask you to rewrite it.To edit just the last commit:1. Amend the commit: ``git commit --amend`` (git opens the message in a text editor).2. Change the message and save/exit the editor.3. Force push your branch: ``git push -f your_remote your_branch`` (your PR with be updated).Otherwise you may need to perform an interactive rebase:1. Rebase the last N commits: ``git rebase -i HEAD~N`` where N is a number.   (Git will open the git-rebase-todo file for editing)2. For the commits that need to change, change ``pick`` to ``r`` (for reword) and save/exit the editor.3. Change the commit message(s), save/exit the editor (git will present a file for each commit that needs rewording).4. ``git push -f your_remote your_branch`` to force push the branch (updating your PR).Testing=======Elgg has automated tests for both PHP and JavaScript functionality.All new contributions are required to come with appropriate tests.PHPUnit Tests-------------TODOJasmine Tests-------------Test files must be named ``*Test.js`` and should go in either ``js/tests/`` or nextto their source files in ``views/default/js``. Karma will automatically pick upon new ``*Test.js`` files and run those tests.Test boilerplate----------------.. code:: js	define(function(require) {		var elgg = require('elgg');		describe("This new test", function() {			it("fails automatically", function() {				expect(true).toBe(false);			});		});	});Running the tests-----------------Elgg uses `Karma`_ with `Jasmine`_ to run JS unit tests... _Karma: http://karma-runner.github.io/0.8/index.html.. _Jasmine: http://pivotal.github.io/jasmine/You will need to have nodejs and npm installed.First install all the development dependencies:.. code::   npm installRun through the tests just once and then quit:.. code::   npm testYou can also run tests continuously during development so they run on each save:.. code::   karma start js/tests/karma.conf.jsCoding best practices=====================Make your code easier to read, easier to maintain, and easier to debug.Consistent use of these guidelines means less guess work for developers,which means happier, more productive developers.General coding--------------Don't Repeat Yourself^^^^^^^^^^^^^^^^^^^^^If you are copy-pasting code a significant amount of code, consider whether there's an opportunity to reduceduplication by introducing a function, an additional argument, a view, or a new component class.E.g. If you find views that are identical except for a single value, refactor into a single viewthat takes an option.**Note:** In a bugfix release, *some duplication is preferrable to refactoring*. Fix bugs in the simplestway possible and refactor to reduce duplication in the next minor release branch.Embrace SOLID and GRASP^^^^^^^^^^^^^^^^^^^^^^^Use these `principles for OO design`__ to solve problems using loosely coupledcomponents, and try to make all components and integration code testable.__ http://nikic.github.io/2011/12/27/Dont-be-STUPID-GRASP-SOLID.htmlWhitespace is free^^^^^^^^^^^^^^^^^^Don't be afraid to use it to separate blocks of code.Use a single space to separate function params and string concatenation.Variable names^^^^^^^^^^^^^^Use self-documenting variable names.  ``$group_guids`` is better than ``$array``.Avoid double-negatives. Prefer ``$enable = true`` to ``$disable = false``.Interface names^^^^^^^^^^^^^^^Use the pattern `Elgg\{Namespace}\{Name}`.Do not include an `I` prefix or an `Interface` suffix.We do not include any prefix or suffix so that we're encouraged to: * name implementation classes more descriptively (the "default" name is taken). * type-hint on interfaces, because that is the shortest, easiest thing to do.Functions^^^^^^^^^Where possible, have functions/methods return a single type.Use empty values such as array(), "", or 0 to indicate no results.Be careful where valid return values (like ``"0"``) could be interpreted as empty.Functions not throwing an exception on error should return ``false`` upon failure.Functions returning only boolean should be prefaced with ``is_`` or ``has_``(eg, ``elgg_is_logged_in()``, ``elgg_has_access_to_entity()``).Ternary syntax^^^^^^^^^^^^^^Acceptable only for single-line, non-embedded statements.Minimize complexity^^^^^^^^^^^^^^^^^^^Minimize nested blocks and distinct execution paths through code. Use`Return Early`__ to reduce nesting levels and cognitive load when reading code.__ http://www.mrclay.org/2013/09/18/when-reasonable-return-early/Use comments effectively^^^^^^^^^^^^^^^^^^^^^^^^Good comments describe the "why."  Good code describes the "how." E.g.:Bad:.. code:: php	// increment $i only when the entity is marked as active.	foreach ($entities as $entity) {		if ($entity->active) {			$i++;		}	}Good:.. code:: php	// find the next index for inserting a new active entity.	foreach ($entities as $entity) {		if ($entity->active) {			$i++;		}	}Always include a comment if it's not obvious that something must be done in a certain way. Otherdevelopers looking at the code should be discouraged from refactoring in a way that would break the code... code:: php    // Can't use empty()/boolean: "0" is a valid value    if ($str === '') {        register_error(elgg_echo('foo:string_cannot_be_empty'));        forward(REFERER);    }Commit effectively^^^^^^^^^^^^^^^^^^* Err on the side of `atomic commits`__ which are highly focused on changing one aspect of the system.* Avoid mixing in unrelated changes or extensive whitespace changes. Commits with many changes are scary and  make pull requests difficult to review.* Use visual git tools to craft `highly precise and readable diffs`__.__ http://en.wikipedia.org/wiki/Atomic_commit#Atomic_Commit_Convention__ http://www.mrclay.org/2014/02/14/gitx-for-cleaner-commits/Include tests~~~~~~~~~~~~~When at all possible include unit tests for code you add or alter. We use:* PHPUnit for PHP unit tests.* SimpleTest for legacy PHP tests that require use of the database. Our long-term goal  is to move all tests to PHPUnit.* Karma for JavaScript unit testsNaming tests~~~~~~~~~~~~Break tests up by the behaviors you want to test and use names that describe thebehavior. E.g.:* Not so good: One big method `testAdd()`.* Better: Methods `testAddingZeroChangesNothing` and `testAddingNegativeNumberSubtracts`Keep bugfixes simple~~~~~~~~~~~~~~~~~~~~Avoid the temptation to refactor code for a bugfix release. Doing so tends tointroduce regressions, breaking functionality in what should be a stable release.PHP guidelines--------------These are the required coding standards for Elgg core and all bundled plugins.Plugin developers are strongly encouraged to adopt these standards.Developers should first read the `PSR-2 Coding Standard Guide`__.__ https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.mdElgg's standards extend PSR-2, but differ in the following ways:* Indent using one tab character, not spaces.* Opening braces for classes, methods, and functions must go on the same line.* If a line reaches over 100 characters, consider refactoring (e.g. introduce variables).* Compliance with `PSR-1`__ is encouraged, but not strictly required.__ https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.mdDocumentation^^^^^^^^^^^^^* Include PHPDoc comments on functions and classes (all methods; declared  properties when appropriate), including types and descriptions of all  parameters.* In lists of ``@param`` declarations, the beginnings of variable names and  descriptions must line up.* Annotate classes, methods, properties, and functions with ``@access private``  unless they are intended for public use, are already of limited visibility,  or are within a class already marked as private.* Use ``//`` or ``/* */`` when commenting.* Use only ``//`` comments inside function/method bodies.Naming^^^^^^* Use underscores to separate words in the names of functions, variables,  and properties. Method names are camelCase.* Names of functions for public use must begin with ``elgg_``.* All other function names must begin with ``_elgg_``.* Name globals and constants in ``ALL_CAPS`` (``ACCESS_FRIENDS``, ``$CONFIG``).Miscellaneous^^^^^^^^^^^^^For PHP requirements, see ``composer.json``.Do not use PHP shortcut tags ``<?`` or ``<%``.It is OK to use ``<?=`` since it is always enabled as of PHP 5.4.When creating strings with variables:* use double-quoted strings* wrap variables with braces only when necessary.Bad (hard to read, misuse of quotes and {}s):.. code:: php	echo 'Hello, '.$name."!  How is your {$time_of_day}?";Good:.. code:: php	echo "Hello, $name!  How is your $time_of_day?";Remove trailing whitespace at the end of lines. An easy way to do this before you commit is to run``php .scripts/fix_style.php`` from the installation root.CSS guidelines--------------Use shorthand where possible^^^^^^^^^^^^^^^^^^^^^^^^^^^^Bad:.. code:: css	background-color: #333333;	background-image:  url(...);	background-repeat:  repeat-x;	background-position:  left 10px;	padding: 2px 9px 2px 9px;Good:.. code:: css	background: #333 url(...) repeat-x left 10px;	padding: 2px 9px;Use hyphens, not underscores^^^^^^^^^^^^^^^^^^^^^^^^^^^^Bad:.. code:: css    .example_class {}Good:.. code:: css    .example-class {}One property per line^^^^^^^^^^^^^^^^^^^^^Bad:.. code:: css	color: white;font-size: smaller;Good:.. code:: css	color: white;	font-size: smaller;Property declarations^^^^^^^^^^^^^^^^^^^^^These should be spaced like so: `property: value;`Bad:.. code:: css	color:value;	color :value;	color : value;Good:.. code:: css	color: value;Vendor prefixes^^^^^^^^^^^^^^^ * Group vendor-prefixes for the same property together * Longest vendor-prefixed version first * Always include non-vendor-prefixed version * Put an extra newline between vendor-prefixed groups and other propertiesBad:.. code:: css	-moz-border-radius: 5px;	border: 1px solid #999999;	-webkit-border-radius: 5px;	width: auto;Good:.. code:: css	border: 1px solid #999999;	-webkit-border-radius: 5px;	-moz-border-radius: 5px;	border-radius: 5px;	width: auto;Group subproperties^^^^^^^^^^^^^^^^^^^Bad:.. code:: css	background-color: white;	color: #0054A7;	background-position: 2px -257px;Good:.. code:: css	background-color: white;	background-position: 2px -257px;	color: #0054A7;Javascript guidelines---------------------Same formatting standards as PHP apply.All functions should be in the ``elgg`` namespace.Function expressions should end with a semi-colon... code:: js	elgg.ui.toggles = function(event) {		event.preventDefault();		$(target).slideToggle('medium');	};Deprecating APIs================Occasionally functions and classes must be deprecated in favor of newerreplacements. Since 3rd party plugin authors rely on a consistent API,backward compatibility must be maintained, but will not be maintainedindefinitely as plugin authors are expected to properly update their plugins.In order to maintain backward compatibility, deprecated APIs will followthese guidelines:* Minor version (1.x) that deprecates an API must include a wrapper  function/class (or otherwise appropriate means) to maintain backward  compatibility, including any bugs in the original function/class.  This compatibility layer uses ``elgg_deprecated_notice('...', '1.11')``  to log that the function is deprecated.* The next major revision (2.0) removes the compatibility layer.  Any use of the deprecated API should be corrected before this.
 |