Skip to content
Snippets Groups Projects
Commit d5bb9e2d authored by totten's avatar totten
Browse files

docs/hooks/setup/symfony.md - Style tweaks

parent 00aafc86
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ In this case, we have a CiviCRM extension or Drupal module named `example`. ...@@ -27,7 +27,7 @@ In this case, we have a CiviCRM extension or Drupal module named `example`.
During the system initialization, we lookup the `EventDispatcher`, call During the system initialization, we lookup the `EventDispatcher`, call
`addListener()`, and listen for `hook_civicrm_alterContent`. `addListener()`, and listen for `hook_civicrm_alterContent`.
``` ```php
function example_civicrm_config(&$config) { function example_civicrm_config(&$config) {
if (!isset(Civi::$statics[__FUNCTION__])) { return; } if (!isset(Civi::$statics[__FUNCTION__])) { return; }
Civi::$statics[__FUNCTION__] = 1; Civi::$statics[__FUNCTION__] = 1;
...@@ -38,7 +38,7 @@ function example_civicrm_config(&$config) { ...@@ -38,7 +38,7 @@ function example_civicrm_config(&$config) {
} }
``` ```
> Note: In some environments, `hook_civicrm_config` runs multiple times. The flag > __Note__: In some environments, `hook_civicrm_config` runs multiple times. The flag
> `Civi::$statics[__FUNCTION__]` prevents duplicate listeners. > `Civi::$statics[__FUNCTION__]` prevents duplicate listeners.
## Example: `Container::findDefinition()` ## Example: `Container::findDefinition()`
......
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