You are here

function fc_add_id in Field Complete 7

2 calls to fc_add_id()
fc_get_ids in ./fc.form.inc
_fc_field_attach_ids in ./fc.form.inc

File

./fc.form.inc, line 188
Field Complete - Provides field-based completeness for any entity - admin.

Code

function fc_add_id($id = NULL) {
  $fc_ids =& drupal_static(__FUNCTION__, array());
  if ($id !== NULL) {
    $fc_ids[$id] = NULL;
  }
  return $fc_ids;
}