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

hook_civicrm_* - Fix various parameter names

This updates the docs to ensure that hook parameters exactly match the names
in the code.

Prior to 4.7.19, the names of hook-parameters didn't really matter (as long
as they were in the right order).  In 4.7.19, the names took on extra
significance because Symfony-based listeners use objects and fields (e.g.
`$event->firstParam`) instead of ordered params (`function($firstParam)`).
parent 081e0b15
No related branches found
No related tags found
No related merge requests found
...@@ -6,11 +6,11 @@ This hook is called while preparing a profile form. ...@@ -6,11 +6,11 @@ This hook is called while preparing a profile form.
## Definition ## Definition
buildProfile($name) buildProfile($profileName)
## Parameters ## Parameters
- $name - the (machine readable) name of the profile. - $profileName - the (machine readable) name of the profile.
## Returns ## Returns
...@@ -21,9 +21,9 @@ immediately obvious how I can use this. I could do something like this: ...@@ -21,9 +21,9 @@ immediately obvious how I can use this. I could do something like this:
function myext_civicrm_buildProfile($name) { function myext_civicrm_buildProfile($profileName) {
if ($name === 'MyTargetedProfile) { if ($profileName === 'MyTargetedProfile) {
CRM_Core_Resources::singleton()->addScriptFile('org.example.myext', 'some/fancy.js', 100); CRM_Core_Resources::singleton()->addScriptFile('org.example.myext', 'some/fancy.js', 100);
......
...@@ -18,7 +18,7 @@ the list of contacts to display. ...@@ -18,7 +18,7 @@ the list of contacts to display.
## Definition ## Definition
hook_civicrm_contactListQuery( &$query, $name, $context, $id ) hook_civicrm_contactListQuery( &$query, $queryText, $context, $id )
## Parameters ## Parameters
...@@ -29,7 +29,7 @@ the list of contacts to display. ...@@ -29,7 +29,7 @@ the list of contacts to display.
- the contact 'data' to display in the autocomplete dropdown - the contact 'data' to display in the autocomplete dropdown
(usually contact.sort_name - aliased as 'data') (usually contact.sort_name - aliased as 'data')
- the contact IDs - the contact IDs
- $name - the name string to execute the query against (this is the - $queryText - the name string to execute the query against (this is the
value being typed in by the user) value being typed in by the user)
- $context - the context in which this ajax call is being made (for - $context - the context in which this ajax call is being made (for
example: 'customfield', 'caseview') example: 'customfield', 'caseview')
...@@ -56,7 +56,7 @@ This example limits contacts in my contact reference field lookup ...@@ -56,7 +56,7 @@ This example limits contacts in my contact reference field lookup
$query = " $query = "
SELECT c.sort_name as data, c.id SELECT c.sort_name as data, c.id
FROM civicrm_contact c, civicrm_group_contact cg FROM civicrm_contact c, civicrm_group_contact cg
WHERE c.sort_name LIKE '$name%' WHERE c.sort_name LIKE '$queryText%'
AND cg.group_id IN ( 5 ) AND cg.group_id IN ( 5 )
AND cg.contact_id = c.id AND cg.contact_id = c.id
AND cg.status = 'Added' AND cg.status = 'Added'
......
...@@ -12,13 +12,13 @@ hook to add/remove options from the option group. ...@@ -12,13 +12,13 @@ hook to add/remove options from the option group.
## Definition ## Definition
```php ```php
hook_civicrm_optionValues(&$options, $name) hook_civicrm_optionValues(&$options, $groupName)
``` ```
## Parameters ## Parameters
- array `$options` - the current set of options - array `$options` - the current set of options
- string `$name` - the name of the option group - string `$groupName` - the name of the option group
## Returns ## Returns
......
...@@ -6,11 +6,11 @@ This hook is called processing a valid profile form submission (e.g. for "civicr ...@@ -6,11 +6,11 @@ This hook is called processing a valid profile form submission (e.g. for "civicr
## Definition ## Definition
processProfile($name) processProfile($profileName)
## Parameters ## Parameters
- $name - the (machine readable) name of the profile. - $profileName - the (machine readable) name of the profile.
!!! Tip !!! Tip
In SQL, this corresponds to the "name" column of table "civicrm_uf_group" In SQL, this corresponds to the "name" column of table "civicrm_uf_group"
......
...@@ -7,11 +7,11 @@ profile). ...@@ -7,11 +7,11 @@ profile).
## Definition ## Definition
searchProfile($name) searchProfile($profileName)
## Parameters ## Parameters
- $name - the (machine readable) name of the profile. - $profileName - the (machine readable) name of the profile.
## Returns ## Returns
......
...@@ -6,11 +6,11 @@ This hook is called while validating a profile form submission. ...@@ -6,11 +6,11 @@ This hook is called while validating a profile form submission.
## Definition ## Definition
validateProfile($name) validateProfile($profileName)
## Parameters ## Parameters
- $name - the (machine readable) name of the profile. - $profileName - the (machine readable) name of the profile.
## Returns ## Returns
......
...@@ -6,11 +6,11 @@ This hook is called while preparing a read-only profile screen. ...@@ -6,11 +6,11 @@ This hook is called while preparing a read-only profile screen.
## Definition ## Definition
viewProfile($name) viewProfile($profileName)
## Parameters ## Parameters
- $name - the (machine readable) name of the profile. - $profileName - the (machine readable) name of the profile.
## Returns ## Returns
......
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