You are here

function quote_quote_plugin in Quote 6.2

Same name and namespace in other branches
  1. 7 wysiwyg/quote.inc \quote_quote_plugin()

Implements hook_wysiwyg_plugin().

File

wysiwyg/quote.inc, line 11
Wysiwyg module's plugin file.

Code

function quote_quote_plugin() {
  $plugins = array();
  $plugins['quote'] = array(
    'title' => t('Quote'),
    'vendor url' => 'http://drupal.org/project/quote',
    'icon file' => 'quote.png',
    'icon title' => t('Add selected text between quote tags.'),
    'settings' => array(),
  );
  return $plugins;
}