Projet

Général

Profil

Paste
Télécharger (433 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / token_insert / token_insert_wysiwyg / plugins / token_insert_wysiwyg.inc @ 5721e759

1
<?php
2

    
3
/**
4
 * @file
5
 * Wysiwyg API integration.
6
 */
7

    
8
/**
9
 * Implementats of hook_wysiwyg_plugin().
10
 */
11
function token_insert_wysiwyg_token_insert_wysiwyg_plugin() {
12
  $plugins['token_insert_wysiwyg'] = array(
13
    'title' => t('Insert token'),
14
    'vendor url' => 'http://drupal.org/project/token_insert',
15
    'icon file' => 'insert.png',
16
    'icon title' => t('Insert a token'),
17
    'settings' => array(),
18
  );
19
  return $plugins;
20
}
21