16 lines
370 B
PHP
16 lines
370 B
PHP
<?php
|
|
$strDefaults =
|
|
"---
|
|
|
|
Copyright © Application Owner";
|
|
|
|
$strDefaults = preg_replace("/[ ]{4,}/", "", $strDefaults);
|
|
$strContent = Settings::get("footer", $strDefaults, true);
|
|
?>
|
|
|
|
<?php if (strlen($strContent) > 0): ?>
|
|
<div class="footer-content">
|
|
<?php PageRender::markdown($strContent); ?>
|
|
</div>
|
|
<?php endif; ?>
|