Using Docblocks for quality code documentation » History » Version 8
Simon Hodgkiss, 01/22/2010 02:39 PM
1 | 1 | Simon Hodgkiss | h1. Using Docblocks for quality code documentation |
---|---|---|---|
2 | 2 | Simon Hodgkiss | |
3 | 3 | Simon Hodgkiss | h2. Information to all developers |
4 | |||
5 | 8 | Simon Hodgkiss | |
6 | # Each file must keep the same docblock at the top of each file up to the following line. |
||
7 | "// Check to ensure this file is included in Joomla! |
||
8 | defined('_JEXEC') or die('Restricted access');" |
||
9 | |||
10 | # The top copyright is to stay the same. |
||
11 | However you make add the @copyright into the top docblock of any of code your wish to add additional copyright to. |
||
12 | |||
13 | 6 | Simon Hodgkiss | The way in which each file should be documented has changed slightly. You may have already seen some changes to a few of the files already. Here you will find all the references you will need to keep your files to out new Docblock documentation. |
14 | 4 | Simon Hodgkiss | |
15 | I have provided you with two files for each type one which has comments on how the document tags work and which should be used. |
||
16 | The other is a blank file which has the basic template for you to drop any code into. |
||
17 | 7 | Simon Hodgkiss | |
18 | If you do not require all the @tags when documenting your code feel free to take them out. |