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

Commit

Permalink
BUG: refs #415. Added SupraFooter section and callback in layout.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Grauer committed Dec 16, 2011
1 parent 145c00b commit 841bd63
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions core/layouts/layout.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,18 @@ echo $this->doctype()
<div class="clear"/>
</div>
</div>
<div class="SupraFooter">
<?php
$contentFooters = Zend_Registry::get('notifier')->callback("CALLBACK_CORE_GET_SUPRA_FOOTER", array());
if(!empty($contentFooters))
{
foreach($contentFooters as $contentFooter)
{
echo $contentFooter;
}
}
?>
</div>
<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") ?> -
<?php
echo $this->t('Generated in').' '.$this->generatedTimer." s";
Expand Down

0 comments on commit 841bd63

Please sign in to comment.