SproutCMS

This is the code documentation for the SproutCMS project

source of /sprout/views/admin/_footer.php

  1. <?php
  2. use Sprout\Helpers\Enc;
  3. use Sprout\Helpers\Sprout;
  4. ?>
  5.  
  6.  
  7. <div class="footer">
  8. <ul class="footer-list">
  9. <li>
  10. <?php $rev = Kohana::config('core.repo_rev'); if ($rev) { echo ' | Site: r' . $rev; } ?>
  11. <?php if (Kohana::config('branding.product_url')): ?>
  12. <a href="<?= Enc::html(Kohana::config('branding.product_url')); ?>" target="_blank"><?= Enc::html(Kohana::config('branding.product_name')); ?></a>
  13. <?php else: ?>
  14. <?= Enc::html(Kohana::config('branding.product_name')); ?>
  15. <?php endif; ?>
  16. <?php echo Sprout::getVersion(true); ?>
  17. </li>
  18.  
  19. <?php
  20. if (Kohana::config('branding.product_url') !== Kohana::config('branding.support_url')) {
  21. echo '<li>Support: ';
  22. echo '<a href="', Enc::html(Kohana::config('branding.support_url')), '" target="_blank">';
  23. echo Enc::html(Kohana::config('branding.support_organisation'));
  24. echo '</a>';
  25. echo '</li>';
  26. }
  27. ?>
  28.  
  29. <li>
  30. <?php echo Kohana::config('branding.copyright_html'); ?>
  31. </li>
  32. </ul>
  33. </div>
  34.