You are here

function select_with_style_install in Select with Style 7

Implements hook_install().

Increase the module weight so that we reliably override implementations of Views filter widgets

File

select_with_style/select_with_style.install, line 14
select_with_style.install

Code

function select_with_style_install() {
  db_update('system')
    ->fields(array(
    'weight' => 100,
  ))
    ->condition('name', 'select_with_style')
    ->execute();
}