You are here

party_user.info.inc in Party 7

Update party property info.

File

modules/party_user/party_user.info.inc
View source
<?php

/**
 * @file
 *   Update party property info.
 */

/**
 * Implements hook_entity_property_info_alter().
 */
function party_user_entity_property_info_alter(&$info) {
  $props =& $info['user']['properties'];
  $props['party']['getter callback'] = 'party_user_party_property_get';
}