You are here

function complete_profile_hide_fields in Complete profile 7

File

./complete_profile.pages.inc, line 34

Code

function complete_profile_hide_fields($elements) {
  $visible_elements = $elements['#visible_elements'];
  foreach (element_get_visible_children($elements) as $key) {
    if (!in_array($key, $visible_elements)) {
      $elements[$key]['#access'] = FALSE;
    }
  }
  return $elements;
}