PageRenderTime 47ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/googlemini/code/trunk/administrator/components/com_artofgm/helpers/html/artofgm.php

https://bitbucket.org/eddieajau/the-art-of-joomla-archive
PHP | 36 lines | 14 code | 2 blank | 20 comment | 0 complexity | 332235bf200cbd5247cca056597d9eea MD5 | raw file
  1. <?php
  2. /**
  3. * @version $Id: artofgm.php 518 2011-01-07 06:36:43Z eddieajau $
  4. * @copyright Copyright 2011 New Life in IT Pty Ltd. All rights reserved
  5. * @license GNU General Public License <http://www.fsf.org/licensing/licenses/gpl.html>
  6. * @link http://www.theartofjoomla.com
  7. */
  8. // No direct access.
  9. defined('_JEXEC') or die;
  10. /**
  11. * Component HTML Helper
  12. *
  13. * @package NewLifeInIT
  14. * @subpackage com_artofgm
  15. * @since 1.5
  16. */
  17. class JHtmlArtofGM
  18. {
  19. /**
  20. * Displays the page footer
  21. *
  22. * @return void
  23. * @since 1.0
  24. */
  25. function footer()
  26. {
  27. JHtml::_('behavior.modal', 'a.modal');
  28. echo '<div id="taojfooter">';
  29. echo '<a href="'.JRoute::_('index.php?option=com_artofgm&view=about&tmpl=component').'" class="modal" rel="{handler: \'iframe\'}">';
  30. echo 'Artof Google Mini '.ArtofGMVersion::getVersion(true, true).'</a>';
  31. echo ' &copy; 2005 - 2010 <a href="http://www.newlifeinit.com" target="_blank">New Life in IT Pty Ltd</a>. All rights reserved.';
  32. echo '</div>';
  33. }
  34. }