Skip to content
Snippets Groups Projects
Commit 4016f175 authored by Liam Morland's avatar Liam Morland
Browse files

Issue #2877483: Coding standards: Switch from @section to @defgroup

@section is for sections within a docbock. @defgroup can be used to
group related functions together.
parent d28eacb9
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,8 @@ ...@@ -6,7 +6,8 @@
*/ */
/** /**
* @section Rules hooks * @defgroup rules_hooks Rules hooks
* @{
*/ */
/** /**
...@@ -155,7 +156,12 @@ function fillpdf_rules_condition_info() { ...@@ -155,7 +156,12 @@ function fillpdf_rules_condition_info() {
} }
/** /**
* @section Rules callbacks * @} End of "defgroup rules_hooks".
*/
/**
* @defgroup rules_callbacks Rules callbacks
* @{
*/ */
/** /**
...@@ -219,7 +225,12 @@ function fillpdf_rules_action_delete_file($filename) { ...@@ -219,7 +225,12 @@ function fillpdf_rules_action_delete_file($filename) {
} }
/** /**
* @section Condition callbacks * @} End of "defgroup rules_callbacks".
*/
/**
* @defgroup condition_callbacks Condition callbacks
* @{
*/ */
/** /**
...@@ -228,3 +239,7 @@ function fillpdf_rules_action_delete_file($filename) { ...@@ -228,3 +239,7 @@ function fillpdf_rules_action_delete_file($filename) {
function _fillpdf_rules_metadata_info() { function _fillpdf_rules_metadata_info() {
return array(); return array();
} }
/**
* @} End of "defgroup condition_callbacks".
*/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment