Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
fieldgroup_content_fieldapi($op, $field)
contributions/cck/modules/fieldgroup/fieldgroup.module, line 87
Implementation of hook_fieldapi().
<?php
function fieldgroup_content_fieldapi($op, $field) {
switch ($op) {
case 'delete':
db_query("DELETE FROM {". fieldgroup_fields_tablename() ."} WHERE field_name = '%s'", $field['field_name']);
break;
}
cache_clear_all('fieldgroup_data', content_cache_tablename());
}
?>