ckeditor_link.install in CKEditor Link 7
Same filename and directory in other branches
File
ckeditor_link.installView source
<?php
/**
* Implementation of hook_install().
*/
function ckeditor_link_install() {
db_update('system')
->fields(array(
'weight' => 1,
))
->condition('name', 'ckeditor_link')
->execute();
}
Functions
Name![]() |
Description |
---|---|
ckeditor_link_install | Implementation of hook_install(). |