You are here

function ckeditor_tabber_ckeditor_plugin in CKEditor Tabber 7

Hook to register the CKEditor plugin.

File

./ckeditor_tabber.module, line 35

Code

function ckeditor_tabber_ckeditor_plugin() {
  return array(
    'tabber' => array(
      'name' => 'tabber',
      'desc' => t('Create tabs with CKeditor'),
      'path' => drupal_get_path('module', 'ckeditor_tabber') . '/tabber/',
      'buttons' => array(
        'addTab' => array(
          'icon' => 'icons/tabber.png',
          'label' => t('Add tab'),
        ),
      ),
    ),
  );
}