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

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

View File

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