Function __global->gift_points_sent
Definitions
sources/points.php
- Get the number of gift points sent by the given member.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: int
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $member_id | MEMBER | No | No | required parameter | N/A | N/A | The member we want it for |
Returns
- The number of gift points sent by the member to others
- Type: integer
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Get the number of gift points sent by the given member.
*
* @param MEMBER $member_id The member we want it for
* @return integer The number of gift points sent by the member to others
*/
function gift_points_sent(int $member_id) : int
* Get the number of gift points sent by the given member.
*
* @param MEMBER $member_id The member we want it for
* @return integer The number of gift points sent by the member to others
*/
function gift_points_sent(int $member_id) : int
