PageRenderTime 45ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 1ms

/contentmanager/code/trunk/administrator/components/com_contentmanager/views/about/tmpl/default.php

https://bitbucket.org/eddieajau/the-art-of-joomla-archive
PHP | 58 lines | 47 code | 2 blank | 9 comment | 0 complexity | 19b50f661a04cd659ac3c7959f61dd8b MD5 | raw file
  1. <?php
  2. /**
  3. * @version $Id: default.php 80 2009-06-01 07:22:16Z eddieajau $
  4. * @package TAOJ.ContentManager
  5. * @subpackage com_contentmanager
  6. * @copyright (C) 2008 New Life in IT Pty Ltd. All rights reserved.
  7. * @license GNU General Public License
  8. * @link http://www.theartofjoomla.com
  9. */
  10. // no direct access
  11. defined('_JEXEC') or die;
  12. ?>
  13. <h1>
  14. <?php echo JText::_('ContMan_About');?>
  15. </h1>
  16. <table class="adminlist">
  17. <caption>
  18. <?php echo JText::_('ContMan_About_Version_History');?>
  19. </caption>
  20. <thead>
  21. <tr>
  22. <th>
  23. <?php echo JText::_('ContMan_About_Version');?>
  24. </th>
  25. <th>
  26. <?php echo JText::_('ContMan_About_Version_Installed'); ?>
  27. </th>
  28. <th>
  29. <?php echo JText::_('ContMan_About_Version_Log'); ?>
  30. </th>
  31. </tr>
  32. </thead>
  33. <tfoot>
  34. <tr>
  35. <td colspan="3">
  36. <?php echo JText::_('ContMan_About_Version_Footnote'); ?>
  37. </td>
  38. </tr>
  39. </tfoot>
  40. <tbody>
  41. <?php foreach ($this->versions as $version) : ?>
  42. <tr>
  43. <td>
  44. <?php echo $version->version;?>
  45. </td>
  46. <td>
  47. <?php echo JHtml::date($version->installed_date); ?>
  48. </td>
  49. <td>
  50. <?php echo nl2br($version->log); ?>
  51. </td>
  52. </tr>
  53. <?php endforeach; ?>
  54. </tbody>
  55. </table>
  56. <br />