PageRenderTime 55ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/modules/mod_chamadas/tmpl/empty.php

https://github.com/J2MTecnologia/joomla-3.x
PHP | 33 lines | 23 code | 3 blank | 7 comment | 3 complexity | 90bef4dda0e2779992c2631703b2b848 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, BSD-3-Clause
  1. <?php
  2. /**
  3. * @package Joomla.Site
  4. * @subpackage mod_chamadas
  5. *
  6. * @copyright Copyright (C) 2013 Open Source Matters, Inc. All rights reserved.
  7. * @license GNU General Public License version 2 or later; see LICENSE.txt
  8. */
  9. defined('_JEXEC') or die;
  10. ?>
  11. <?php if ($params->get('titulo_alternativo')): ?>
  12. <h3 class="page-header"><?php echo $params->get('titulo_alternativo')?></h3>
  13. <?php endif; ?>
  14. <div class="span12">
  15. <?php echo $params->get('mensagem_vazia'); ?>
  16. </div>
  17. <?php if (! empty($link_saiba_mais) ): ?>
  18. <div class="outstanding-footer">
  19. <a href="<?php echo $link_saiba_mais; ?>" class="outstanding-link">
  20. <?php if ($params->get('texto_saiba_mais')): ?>
  21. <span class="text"><?php echo $params->get('texto_saiba_mais')?></span>
  22. <?php else: ?>
  23. <span class="text">saiba mais</span>
  24. <?php endif;?>
  25. <span class="icon-box">
  26. <i class="icon-angle-right icon-light"><span class="hide">&nbsp;</span></i>
  27. </span>
  28. </a>
  29. </div>
  30. <?php endif; ?>