This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
uuid: 30475292-f602-44ee-a9b8-ced72eb8989b | |
langcode: en | |
status: true | |
dependencies: | |
module: | |
- civicrm_entity | |
- options | |
id: contribution_page_tester | |
label: 'contribution page tester' | |
module: views |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @file | |
* Sync civicrm user preferences with Drupal groups. | |
*/ | |
use Drupal\Core\Database\Database; | |
use Drupal\Core\Form\FormStateInterface; | |
use Drupal\Core\Url; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "drupal/recommended-project", | |
"description": "Project template for Drupal projects with a relocated document root", | |
"type": "project", | |
"license": "GPL-2.0-or-later", | |
"homepage": "https://www.drupal.org/project/drupal", | |
"support": { | |
"docs": "https://www.drupal.org/docs/user_guide/en/index.html", | |
"chat": "https://www.drupal.org/node/314178" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
langcode: en | |
status: true | |
dependencies: | |
module: | |
- civicrm_entity | |
id: contacts_in_group_temp | |
label: 'Contacts in group temp' | |
module: views | |
description: '' | |
tag: '' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
langcode: en | |
status: open | |
dependencies: | |
module: | |
- webform_civicrm | |
open: null | |
close: null | |
weight: 0 | |
uid: 3795 | |
template: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
langcode: en | |
status: true | |
dependencies: { } | |
id: create_user_1 | |
label: 'Create user' | |
events: | |
- | |
event_name: 'rules_entity_insert:civicrm_entity_tag--civicrm_entity_tag' | |
description: '' | |
tags: { } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Implements hook_ENTITY_TYPE_update(). | |
* | |
* On contact update, update primary Address, giving Drupal Geolocation its value | |
*/ | |
function map_customs_civicrm_contact_update(CivicrmEntity $civicrm_contact) { | |
if ($civicrm_contact->get('contact_type')->value !== 'Organization') { | |
return; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
langcode: en | |
status: true | |
dependencies: | |
module: | |
- civicrm_entity | |
- civicrm_entity_leaflet | |
- options | |
id: proximity_with_map | |
label: 'Proximity with Map' | |
module: views |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
langcode: en | |
status: true | |
dependencies: | |
module: | |
- charts | |
- charts_google | |
- civicrm_entity | |
id: chart_demo_temp | |
label: 'Chart Demo Temp' | |
module: views |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Implements hook_civicrm_post(). | |
* | |
* Manage Drupal group membership when Committee Relationship is added/updated/deleted | |
* | |
* @param $op | |
* @param $objectName | |
* @param $objectId | |
* @param $objectRef | |
*/ |
NewerOlder