You are here

function ckeditor_link_form_alter in CKEditor Link 6

Same name and namespace in other branches
  1. 7 ckeditor_link.module \ckeditor_link_form_alter()

Implementation of hook_form_alter().

File

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

Code

function ckeditor_link_form_alter(&$form, &$form_state) {
  if (user_access('access ckeditor link')) {
    $form['#after_build'][] = 'ckeditor_link_process_form';
  }
}