You are here

function ckeditor_video_ckeditor_plugin in CKEditor Video 7

Implements hook_ckeditor_plugin().

File

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

Code

function ckeditor_video_ckeditor_plugin() {
  return array(
    'video' => array(
      'name' => 'video',
      'desc' => t('Plugin to insert HTML5 video'),
      'path' => drupal_get_path('module', 'ckeditor_video') . '/video/',
      'default' => 't',
      'buttons' => array(
        'Video' => array(
          'icon' => 'icons/video.png',
          'label' => t('Video'),
        ),
      ),
    ),
  );
}