Last active
February 29, 2016 17:47
-
-
Save wadmiraal/7640826 to your computer and use it in GitHub Desktop.
Drupal Doxygen standard for @defgroup.
From https://drupal.org/coding-standards/docs#defgroup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @defgroup group_identifier Topic title goes here | |
* @{ | |
* Summary line for the group/topic goes here. | |
* | |
* Additional documentation paragraphs go here. | |
*/ | |
// (functions, classes, etc. that belong as members of the group go here) | |
/** | |
* @} End of "defgroup group_identifier". | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment