You are here

quote.inc in Quote 6.2

Same filename and directory in other branches
  1. 7 wysiwyg/quote.inc

Wysiwyg module's plugin file.

File

wysiwyg/quote.inc
View 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.'),
    'settings' => array(),
  );
  return $plugins;
}

Functions

Namesort descending Description
quote_quote_plugin Implements hook_wysiwyg_plugin().