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

Creating permissions for administrators


If you look at the CMS permissions for CiviCRM, there are 60 or so permissions that you can control, depending upon what CiviCRM components you have enabled. If you are new to CiviCRM, it can be quite a daunting proposition to allocate these permissions correctly. For example, you might want to create a role in your CMS for CiviCRM Admin and let those users the admin CiviCRM. What permissions do you give them in the CMS?

How to do it…

CiviCRM has a preconfigured ACL role called Administrators linked to a CiviCRM group called Administrators. It is already set up with the main permissions to administer CiviCRM. All we need to do is to hook our users up to it and use it for our admin permissions rather than using CMS permissions.

  1. In Drupal, create a role called CiviCRM Admin.

  2. In your Drupal, disable the CiviCRM: access CiviCRM permission for everyone except the CIVICRM ADMIN role.

  3. In Drupal, ensure that the CiviCRM Group Roles Sync module is enabled.

  4. In Drupal...