civicrm

Is it possible to share users between a Drupal 6.x and Open Atrium database, based on organic groups or CiviCRM smart groups?

ⅰ亾dé卋堺 提交于 2020-01-06 03:25:27
问题 I use Drupal with CiviCRM for our nonprofit's public site and CRM database, and Open Atrium for the intranet. My goal is to either sync or share specific users from the public site to the intranet, to allow single sign-on. However, only users who are part of a specific CiviCRM smart group (volunteers) should be shared/synced. I could use the module to sync CiviCRM groups with Drupal organic groups if that would make this task easier. Any thoughts? 回答1: Usually, the Domain Access module is

civicrm print invoice button

别说谁变了你拦得住时间么 提交于 2019-12-25 14:24:03
问题 In civicrm print invoice button is not working in wordpress. Error occur like this Firefox can't find the file at http://wwwwwwwwww/dashboard/?page=CiviCRM&q=civicrm/contribute/invoice&reset=1&id=43&cid=2. how to resolve this ? 回答1: I don't have a real answer for this - but my working local drupal url looks like: http://dmaster.local/civicrm/contribute/invoice?reset=1&id=185&cid=202 Whereas yours is: http://wwwwwwwwww/dashboard/?page=CiviCRM&q=civicrm/contribute/invoice&reset=1&id=43&cid=2 My

How to validate PAN No and Bank account number using php?

时光毁灭记忆、已成空白 提交于 2019-12-11 16:53:31
问题 I need to validate pan number and bank account number fields. How can I do that using php? I have to implement this validation in civicrm custom form. civicrm has any built in function for these two validations. 回答1: Pan number validation regular expression if (!preg_match("/^([a-zA-Z]){5}([0-9]){4}([a-zA-Z]){1}?$/", $pannumber)) { echo "Invalid pan number"; } 来源: https://stackoverflow.com/questions/4969572/how-to-validate-pan-no-and-bank-account-number-using-php