You are here

function _ctools_configuration_export_crud_delete in Configuration Management 7

Wrapper around ctools_export_crud_delete() for < 1.7 compatibility.

File

includes/configuration.ctools.inc, line 306

Code

function _ctools_configuration_export_crud_delete($table, $object) {
  if (ctools_api_version('1.7')) {
    ctools_export_crud_delete($table, $object);
  }
  else {
    $schema = ctools_export_get_schema($table);
    $export = $schema['export'];
    db_query("DELETE FROM {{$table}} WHERE {$export['key']} = '%s'", $object->{$export['key']});
  }
}