Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

fieldgroup_fields_tablename

Definition

fieldgroup_fields_tablename($version = NULL)
contributions/cck/modules/fieldgroup/fieldgroup.module, line 634

Code

<?php
function fieldgroup_fields_tablename($version = NULL) {
  if (is_null($version)) {
    $version = variable_get('fieldgroup_schema_version', 0);
  }
  return $version < 6000 ? 'node_group_fields' : 'content_group_fields';
}
?>