You are here

function ckeditor_swf_install in CKEditor SWF - Enhanced Flash embedding plugin 7

Same name and namespace in other branches
  1. 6.2 ckeditor_swf.install \ckeditor_swf_install()

Implementation of hook_install().

File

./ckeditor_swf.install, line 6

Code

function ckeditor_swf_install() {
  db_update('system')
    ->fields(array(
    'weight' => 1,
  ))
    ->condition('name', 'ckeditor_swf')
    ->execute();
}