Pelzini

This is the code documentation for the Pelzini project

source of /viewer/foot.php

The viewer footer
  1. <?php
  2. /*
  3. Copyright 2008 Josh Heidenreich
  4.  
  5. This file is part of Pelzini.
  6.  
  7. Pelzini is free software: you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation, either version 3 of the License, or
  10. (at your option) any later version.
  11.  
  12. Pelzini is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with Pelzini. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20.  
  21. /**
  22.  * The viewer footer
  23.  *
  24.  * @package Viewer
  25.  * @author Josh Heidenreich
  26.  * @since 0.1
  27.  * @tag i18n-done
  28.  **/
  29.  
  30. $generated = strtotime($project['dategenerated']);
  31. $generated = date('l, jS F, Y', $generated) . ' at ' . date('h:i a', $generated);
  32.  
  33. ?>
  34.  
  35.  
  36.  
  37. <!-- Main content ends here -->
  38.  
  39. </td>
  40. </tr>
  41. </table>
  42.  
  43. <table class="footer">
  44. <tr>
  45. <td align="left" style="width: 20em;">
  46. <?php echo str (STR_POWERED_BY, 'version', PELZINI_VERSION); ?>
  47. </td>
  48.  
  49. <td align="center">
  50. <?php echo $project['license']; ?>
  51. <br>
  52. <?php echo str (STR_DATE_GENERATED, 'date', $generated); ?>
  53. </td>
  54.  
  55. <td align="right" style="width: 20em;">
  56. <a href="https://github.com/Karmabunny/pelzini">
  57. <img src="assets/docs_pelzini.png" width="80" height="15">
  58. </a>
  59. </td>
  60. </tr>
  61. </table>
  62.  
  63. </body>
  64. </html>
  65. <?php
  66. exit();
  67. ?>
  68.