You are here

function video_filter_ckeditor_plugin in Video Filter 7.3

Implements hook_ckeditor_plugin().

File

./video_filter.module, line 661

Code

function video_filter_ckeditor_plugin() {
  $plugins = array();
  $plugins['video_filter'] = array(
    'name' => 'video_filter',
    'desc' => t('Plugin to directly embed videos with the video filter module.'),
    'path' => drupal_get_path('module', 'video_filter') . '/editors/ckeditor/',
    'buttons' => array(
      'video_filter' => array(
        'label' => t('Video filter'),
        'icon' => 'video_filter.png',
      ),
    ),
  );
  return $plugins;
}