You are here

function colors_delete_selectors in Colors 7

Deletes all the selectors from a specfic module.

Parameters

$module: The module the selectors should be removed from.

File

./colors.module, line 241
Provides an API to match selectors with a color configuration.

Code

function colors_delete_selectors($module) {
  db_delete('colors')
    ->condition('module', $module)
    ->execute();
}