You are here

function picture_ckeditor_plugin in Picture 7.2

Same name and namespace in other branches
  1. 7 picture.module \picture_ckeditor_plugin()

Implements hook_ckeditor_plugin().

Modify the CKEditor image dialog for use with the picture module.

File

./picture.module, line 2139
Picture formatter.

Code

function picture_ckeditor_plugin() {
  return array(
    'picture_ckeditor' => array(
      'name' => 'picture_ckeditor',
      'desc' => t('Support responsive images with the Picture module.'),
      'buttons' => FALSE,
      'path' => drupal_get_path('module', 'picture') . '/ckeditor/plugins/',
      'default' => 't',
    ),
  );
}