You are here

oa_users.strongarm.inc in Open Atrium Core 7.2

File

modules/oa_users/oa_users.strongarm.inc
View source
<?php

/**
 * @file
 * oa_users.strongarm.inc
 */

/**
 * Implements hook_strongarm().
 */
function oa_users_strongarm() {
  $export = array();
  $strongarm = new stdClass();
  $strongarm->disabled = FALSE;

  /* Edit this to true to make a default strongarm disabled initially */
  $strongarm->api_version = 1;
  $strongarm->name = 'realname_pattern';
  $strongarm->value = '[user:field-user-display-name]';
  $export['realname_pattern'] = $strongarm;
  $strongarm = new stdClass();
  $strongarm->disabled = FALSE;

  /* Edit this to true to make a default strongarm disabled initially */
  $strongarm->api_version = 1;
  $strongarm->name = 'user_picture_style';
  $strongarm->value = 'oa_small_thumbnail';
  $export['user_picture_style'] = $strongarm;
  return $export;
}

Functions

Namesort descending Description
oa_users_strongarm Implements hook_strongarm().