You are here

rendered_entity.inc in Token Insert Entity 7

Wysiwyg API integration.

File

plugins/rendered_entity.inc
View source
<?php

/**
 * @file
 * Wysiwyg API integration.
 */

/**
 * Implementation of hook_wysiwyg_plugin().
 */
function token_insert_entity_rendered_entity_plugin() {
  $plugins['rendered_entity'] = array(
    'title' => t('Rendered entity'),
    'vendor url' => 'http://drupal.org/project/token_insert_entity',
    'icon file' => 'insert.png',
    'icon title' => t('Insert a token'),
    'settings' => array(),
  );
  return $plugins;
}

Functions