1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
/**
* Horde Html Helper Javascript Class
*
* Provides the javascript class insert html tags by clicking on icons.
*
* The helpers available:
* emoticons - for inserting emoticons strings
*
* $Horde: horde/templates/javascript/open_html_helper.js,v 1.12.2.5 2006/05/11 19:49:14 chuck Exp $
*
* Copyright 2003-2006 Marko Djukic <marko@oblo.com>
*
* See the enclosed file COPYING for license information (GPL). If you did not
* receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
* @author Marko Djukic <marko@oblo.com>
* @package horde
* @todo add handling for font tags, tables, etc.
*/
var targetElement;
function openHtmlHelper(type, target)
{
var lay = document.getElementById('htmlhelper_' + target);
targetElement = document.getElementById(target);
if (lay.style.display == 'block') {
lay.style.display = 'none';
return false;
}
if (lay.firstChild) {
lay.removeChild(lay.firstChild);
}
var table = document.createElement('TABLE');
var tbody = document.createElement('TBODY');
table.appendChild(tbody);
table.cellSpacing = 0;
table.border = 0;
if (type == 'emoticons') {
row = document.createElement('TR');
cell = document.createElement('TD');
<?php require_once 'Horde/Text/Filter.php'; $filter = Text_Filter::factory('emoticons'); $icons = array_flip($filter->getIcons()); foreach ($icons as $icon => $string): ?>
link = document.createElement('A');
link.href = '#';
link.onclick = function() {
targetElement.value = targetElement.value + '<?php echo $string ?>' + ' ';
return false;
}
cell.appendChild(link);
img = document.createElement('IMG')
img.src = '<?php echo $GLOBALS['registry']->getImageDir('horde') . '/emoticons/' . $icon . '.png' ?>';
img.align = 'middle';
img.border = 0;
link.appendChild(img);
<?php endforeach; ?>
row.appendChild(cell);
tbody.appendChild(row);
table.appendChild(tbody);
}
lay.appendChild(table);
lay.style.display = 'block';
}
|