Merge branch 'seeddms-4.3.x' into seeddms-5.0.x

This commit is contained in:
Uwe Steinmann 2017-01-17 18:36:02 +01:00
commit c3553335fb

View File

@ -2553,13 +2553,16 @@ mayscript>
$this->printTimelineHtml($height);
} /* }}} */
protected function printPopupBox($title, $content) { /* {{{ */
?>
<span class="openpopupbox"><?php echo $title; ?></span>
protected function printPopupBox($title, $content, $ret=false) { /* {{{ */
$html = '
<span class="openpopupbox">'.$title.'</span>
<div class="popupbox" style="display: none;">
<?php echo $content; ?>
</div>
<?php
'.$content.'
</div>';
if($ret)
return $html;
else
echo $html;
} /* }}} */
protected function printAccordion($title, $content) { /* {{{ */