<?php
require_once(WCF_DIR.'lib/system/event/EventListener.class.php');
require_once(WCF_DIR.'lib/system/style/StyleManager.class.php');
// author: Suat Secmen (
http://firepanther.pro)
class FPTooltip implements Eventlistener {
/**
* @see EventListener::execute()
*/
public function execute ($eventObj, $className, $eventName) {
if (MODULE_FPTOOLTIP)
WCF::getTPL()->append(
'specialStyles',
'<script type="text/javascript">var FPToolTipOptions = new Array('.
'"'.escapeString(FPTOOLTIP_BACKGROUND).'", '.
'"'.escapeString(FPTOOLTIP_BORDER).'", '.
intval(FPTOOLTIP_OPACITY).', '.
intval(FPTOOLTIP_RADIUS).', '.
'"'.escapeString(FPTOOLTIP_FONTCOLOR).'", '.
intval(FPTOOLTIP_BORDERWIDTH).
')</script>'.
'<script type="text/javascript" src="'.RELATIVE_WCF_DIR.'js/FPTooltip.class.js"></script>'
);
}
}
?>
D: