You are here

ckeditor_link.install in CKEditor Link 7

File

ckeditor_link.install
View source
<?php

/**
 * Implementation of hook_install().
 */
function ckeditor_link_install() {
  db_update('system')
    ->fields(array(
    'weight' => 1,
  ))
    ->condition('name', 'ckeditor_link')
    ->execute();
}

Functions

Namesort descending Description
ckeditor_link_install Implementation of hook_install().