19 lines
539 B
PHTML
19 lines
539 B
PHTML
<?php
|
|
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
|
|
?>
|
|
<button class="btn action" id="<?=$this->escape($this->id)?>" value="" type="submit"
|
|
<?php echo isset($this->onclick) ? 'onclick="' . $this->escape($this->onclick) . '"' : '' ?>>
|
|
<span><?=$this->escape($this->title)?></span>
|
|
</button>
|
|
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
Jsw.Tooltip.init(
|
|
document.getElementById(<?=$this->jsEscape($this->id)?>),
|
|
{text: <?=$this->jsHtml($this->description)?>}
|
|
);
|
|
//]]>
|
|
</script>
|
|
|
|
|