Skip to content

Instantly share code, notes, and snippets.

@jptillman
jptillman / civipicsync.module
Last active June 21, 2018 16:25
Drupal8 module for sync'ing profile pic with CiviCRM contact pic
<?php
use Drupal\Core\Routing\RouteMatchInterface;
function civipicsync_get_user_picture_path($account) {
$pic = $account->user_picture;
$path = NULL;
if (!$pic->isEmpty()) {