You are here

function quickedit_module_implements_alter in Quick Edit 7

Implements hook_module_implements_alter().

Make sure our alter hook is run after jquery update (and after all the others for that matter).

File

./quickedit.module, line 686
Provides in-place content editing functionality for fields.

Code

function quickedit_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'library_alter') {

    // Move our hook implementation to the bottom.
    $group = $implementations['quickedit'];
    unset($implementations['quickedit']);
    $implementations['quickedit'] = $group;
  }
}