You are here

function footable_breakpoint_delete in FooTable 7.2

Delete a single breakpoint by machine name.

Parameters

string $machine_name: The breakpoint machine name.

File

./footable.module, line 469
Provides Views integration for the jQuery FooTable plugin.

Code

function footable_breakpoint_delete($machine_name) {
  db_delete('footable_breakpoint')
    ->condition('machine_name', $machine_name)
    ->execute();
  ctools_include('export');
  ctools_export_load_object_reset('footable_breakpoint');
}