You are here

function ckeditor_link_install in CKEditor Link 7

Same name and namespace in other branches
  1. 6.2 ckeditor_link.install \ckeditor_link_install()
  2. 6 ckeditor_link.install \ckeditor_link_install()
  3. 7.2 ckeditor_link.install \ckeditor_link_install()

Implementation of hook_install().

File

./ckeditor_link.install, line 6

Code

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