You are here

ckeditor_media.module in CKEditor Media Browser 7

Same filename and directory in other branches
  1. 7.2 ckeditor_media.module

File

ckeditor_media.module
View source
<?php

function ckeditor_media_ckeditor_plugin() {
  $plugins = array();
  $plugins['mediaBrowser'] = array(
    // Plugin name.
    'name' => 'mediaBrowser',
    // Plugin description - it will be displayed in the plugins management section of the profile settings.
    'desc' => t('Media Browser for File Upload/Browsing'),
    // The full path to the CKEditor plugin directory, trailing slash included.
    'path' => drupal_get_path('module', 'ckeditor_media') . '/plugins/mediaBrowser/',
  );
  return $plugins;
}

Functions