PageRenderTime 48ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/filler/code/trunk/administrator/components/com_filler/helpers/html/filler.php

https://bitbucket.org/eddieajau/the-art-of-joomla-archive
PHP | 39 lines | 15 code | 4 blank | 20 comment | 0 complexity | 03281b68746f6fe1f81cfba1a48b0b43 MD5 | raw file
  1. <?php
  2. /**
  3. * @version $Id: filler.php 253 2010-08-19 12:35:02Z eddieajau $
  4. * @copyright Copyright (C) 2009 New Life in IT Pty Ltd. All rights reserved.
  5. * @license GNU General Public License <http://www.gnu.org/copyleft/gpl.html>
  6. * @link http://www.theartofjoomla.com
  7. */
  8. // no direct access
  9. defined('_JEXEC') or die;
  10. /**
  11. * HTML Grid Helper
  12. *
  13. * @package Artof.Filler
  14. * @subpackage com_filler
  15. */
  16. class JHtmlFiller
  17. {
  18. /**
  19. * Displays the view footer.
  20. *
  21. * @return void
  22. * @since 1.0.4
  23. */
  24. public function footer()
  25. {
  26. // Initialise variables.
  27. $version = new FillerVersion;
  28. JHtml::_('behavior.modal', 'a.modal');
  29. return '<div id="taojfooter">'.
  30. '<a href="'.JRoute::_('index.php?option=com_filler&view=about&tmpl=component').'" class="modal" rel="{handler: \'iframe\'}">'.
  31. 'Filler '.$version->version.'.'.$version->subversion.' '.$version->status.'</a>'.
  32. ' &copy; 2005 - 2010 <a href="http://www.newlifeinit.com" target="_blank">New Life in IT Pty Ltd</a>. All rights reserved.'.
  33. '</div>';
  34. }
  35. }