Guest User

Untitled

a guest
Jan 9th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. function yourextension_civicrm_postProcess($formName, &$form) {
  2.  
  3. //Check if user has an active membership of type "General".
  4. $activeMembership = civicrm_api3('Membership', 'getcount', array(
  5. 'contact_id' => 107,
  6. 'active_only' => 1,
  7. 'membership_type_id' => "General",
  8. ));
  9.  
  10. //Assign a new variable to the template.
  11. $form->assign('activeMembership', $activeMembership);
  12. }
Add Comment
Please, Sign In to add comment