Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit 841bd63

Browse files
author
Michael Grauer
committed
BUG: refs #415. Added SupraFooter section and callback in layout.
1 parent 145c00b commit 841bd63

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

core/layouts/layout.phtml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,18 @@ echo $this->doctype()
335335
<div class="clear"/>
336336
</div>
337337
</div>
338+
<div class="SupraFooter">
339+
<?php
340+
$contentFooters = Zend_Registry::get('notifier')->callback("CALLBACK_CORE_GET_SUPRA_FOOTER", array());
341+
if(!empty($contentFooters))
342+
{
343+
foreach($contentFooters as $contentFooter)
344+
{
345+
echo $contentFooter;
346+
}
347+
}
348+
?>
349+
</div>
338350
<div class="Footer"><a href="http://www.kitware.com/products/midas.html">MIDAS</a> <?php echo $this->version ?> by <a href="http://www.kitware.com">Kitware</a> © <?php echo date("Y") ?> -
339351
<?php
340352
echo $this->t('Generated in').' '.$this->generatedTimer." s";

0 commit comments

Comments
 (0)