With last version of CKEditor DEV module we add new feature that helps to integrate with it by hook.
So if u can, pls add following lines to your module in D6 and D7 version:

/**
 * Implementation of hook_ckeditor_plugin().
 */
function linkit_ckeditor_plugin() {
  return array(
        'linkit' => array(
            // Name of the plugin used to write it
            'name' => 'Linkit',
            // Description of plugin - it would appear in plugins managment of profile settings
            'desc' => t('Support for Linkit module'),
            // The full path to the CKEditor plugin directory, with trailing slash.
            'path' => drupal_get_path('module', 'linkit') . '/editors/ckeditor/',
        )
    );
}

This works only with DEV version of CKEditor module from 6-Jun-2011 and will be released with stable version asap.

Greetings

CommentFileSizeAuthor
#5 1179926-5-7x1x.patch864 bytesanon
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

anon’s picture

Assigned: Unassigned » anon

Im assign myself to this.

dczepierga’s picture

It should works without problem with linkit 6.x-1.x and 7.x-1.x, both with last DEV version of CKEditor module - now linkit is detected by our module for users using older versions of module, but in the future we remove this detection and will be only hook for this.

Greetings

anon’s picture

Status: Reviewed & tested by the community » Fixed

Added this to 6.x-1-x and 7.x-2.x (NOT 7.x-1.x as this will soon be unsupported).

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

anon’s picture

Status: Closed (fixed) » Fixed
FileSize
864 bytes

I have commit this patch to 7.x-1.x.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.