You are here

function ckeditor_link_install in CKEditor Link 7.2

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 ckeditor_link.install \ckeditor_link_install()

Implementation of hook_install().

File

./ckeditor_link.install, line 12
Written by Henri MEDOT <henri.medot[AT]absyx[DOT]fr> http://www.absyx.fr

Code

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