function token_insert_help in Token Insert 7.2
File
- ./
token_insert.module, line 140 - wysiwyg plugin hook.
Code
function token_insert_help($path, $arg) {
if ($path == 'admin/help#token_insert') {
$output = <<<EOT
<h3>Description</h3>
<p>This module allows you to insert tokens into a textarea. It supports both plain text and wysiwyg textareas. The format used for the insert is compatible with Token filter.</p>
<p>This module contains three modules:</p>
<ul>
<li>Token insert UI: Allows you to select which tokens are available for the insert, by default all tokens are shown. This module doesn't have to be enabled to use the others.</li>
<li>Token insert (text): Add a fieldset under each textarea, works for both plain text fields and wysiwyg fields.</li>
<li>Token insert (wysiwyg): Adds an extra button to wysiwyg editors and opens a popup to select the token to insert.</li>
</ul>
<h3>Dependencies</h3>
<ul>
<li>Token</li>
</ul>
<h3>Recommended</h3>
<ul>
<li>Token filter</li>
</ul>
<h3>Thanks to</h3>
<ul>
<li>Attiks</li>
<li>Jelle</li>
</ul>
EOT;
return $output;
}
}