PageRenderTime 41ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/exchange/code/trunk/administrator/components/com_exchange/views/migrate/tmpl/default.php

https://bitbucket.org/eddieajau/the-art-of-joomla-archive
PHP | 67 lines | 55 code | 3 blank | 9 comment | 2 complexity | 9119b4a8a0b06461f9f3108579926909 MD5 | raw file
  1. <?php
  2. /**
  3. * @version $Id: default.php 280 2010-09-18 02:14:15Z eddieajau $
  4. * @package NewLifeInIT
  5. * @subpackage com_exchange
  6. * @copyright Copyright 2005 - 2010 New Life in IT Pty Ltd. All rights reserved.
  7. * @license GNU General Public License version 2 or later.
  8. * @link http://www.theartofjoomla.com
  9. */
  10. // no direct access
  11. defined('_JEXEC') or die;
  12. ?>
  13. <form action="<?php echo JRoute::_('index.php?option=com_exchange&view=migrate');?>" method="post" name="adminForm">
  14. <table class="adminlist">
  15. <thead>
  16. <tr>
  17. <th width="15%">
  18. <?php echo JText::_('JX Col Migrate Name');?>
  19. </th>
  20. <th width="5%">
  21. <?php echo JText::_('JX Col Migrate Type');?>
  22. </th>
  23. <th>
  24. <?php echo JText::_('JX Col Author');?>
  25. </th>
  26. <th>
  27. <?php echo JText::_('JX Col Date');?>
  28. </th>
  29. <th>
  30. <?php echo JText::_('JX Col Description');?>
  31. </th>
  32. </tr>
  33. </thead>
  34. <tbody>
  35. <?php foreach ($this->files as $file) : ?>
  36. <tr>
  37. <td>
  38. <a href="index.php?option=com_exchange&amp;view=migrate&layout=options&adapter=<?php echo $file->adapter;?>">
  39. <?php echo $file->name;?></a>
  40. </td>
  41. <td>
  42. <?php echo JText::_('JX PC '.$file->type);?>
  43. </td>
  44. <td>
  45. <?php if ($file->url) : ?>
  46. <a href="http://<?php echo $file->url;?>" target="_new">
  47. <?php echo $file->author;?> <img src="components/com_exchange/media/images/external.png" alt="" /></a>
  48. <?php else : ?>
  49. <?php echo $file->author;?>
  50. <?php endif; ?>
  51. </td>
  52. <td>
  53. <?php echo $file->date;?>
  54. </td>
  55. <td>
  56. <?php echo $file->description;?>
  57. </td>
  58. </tr>
  59. <?php endforeach; ?>
  60. </tbody>
  61. </table>
  62. <input type="hidden" name="task" value="" />
  63. <input type="hidden" name="boxchecked" value="0" />
  64. </form>