quote.inc in Quote 7
Same filename and directory in other branches
Wysiwyg module's plugin file.
File
wysiwyg/quote.incView source
<?php
/**
* @file
* Wysiwyg module's plugin file.
*/
/**
* Implements hook_wysiwyg_plugin().
*/
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.'),
'css path' => NULL,
'css file' => NULL,
'settings' => array(),
);
return $plugins;
}
Functions
Name | Description |
---|---|
quote_quote_plugin | Implements hook_wysiwyg_plugin(). |