Book Image

CiviCRM Cookbook

Book Image

CiviCRM Cookbook

Overview of this book

CiviCRM is a web-based, open source, Constituent Relationship Management (CRM) software geared toward meeting the needs of non-profit and other civic-sector organizations.Organizations realize their mission via CiviCRM through contact management, fundraising, event management, member management, mass e-mail marketing, peer-to-peer campaigns, case management, and much more.CiviCRM is localized in over 20 languages including: Chinese (Taiwan, China), Dutch, English (Australia, Canada, U.S., UK), French (France, Canada), German, Italian, Japanese, Russian, and Swedish.CiviCRM Cookbook will enhance your CiviCRM skills. It has recipes to help you use CiviCRM more efficiently, integrate it with CMSs, and also develop CiviCRM.This book begins with recipes that help save time and effort with CiviCRM. This is followed by recipes for organizing data more efficiently and managing profiles.Then you will learn authentication and authorization and managing communication with contacts.Then you will be guided on using the searching feature and preparing reports. We will then talk about integrating Drupal and CiviCRM. You will also be taught to manage events effectively. Finally, learn about CiviCampaign, Civimember, and developing CiviCRM.
Table of Contents (19 chapters)
CiviCRM Cookbook
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Using Webform CiviCRM to update relationship data


Updating related contact information is not very straightforward in CiviCRM. Let's imagine you are using CiviCRM to organize a soccer league. You would have three types of contacts: an organization contact type representing a soccer team, an individual contact type representing the team manager, and another individual contact type representing players. You would create a "manager" relationship between the team and the manager and a "player" relationship between the team and the players. Suppose you want to allow the manager to be able to update the team contact? You can do this by allowing managers to update teams by checking the permissions box on the relationship. But the update interface is through the user CiviCRM dashboard, and custom fields are not available through this technique. Enter CiviCRM Webforms for Drupal.

This powerful module exposes CiviCRM contact fields to the Drupal Webform module. CiviCRM Webforms can create and update...