home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / phpMyAdmin / transformation_overview.php < prev    next >
PHP Script  |  2008-06-23  |  2KB  |  75 lines

  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4.  *
  5.  * @version $Id: transformation_overview.php 10146 2007-03-20 14:16:18Z cybot_tm $
  6.  */
  7.  
  8. /**
  9.  * Don't display the page heading
  10.  */
  11. define('PMA_DISPLAY_HEADING', 0);
  12.  
  13. /**
  14.  * Gets some core libraries and displays a top message if required
  15.  */
  16. require_once './libraries/common.inc.php';
  17. require_once './libraries/header.inc.php';
  18. require_once './libraries/relation.lib.php';
  19. require_once './libraries/transformations.lib.php';
  20. $cfgRelation = PMA_getRelationsParam();
  21.  
  22. $types = PMA_getAvailableMIMEtypes();
  23. ?>
  24.  
  25. <h2><?php echo $strMIME_available_mime; ?></h2>
  26. <?php
  27. foreach ($types['mimetype'] as $key => $mimetype) {
  28.  
  29.     if (isset($types['empty_mimetype'][$mimetype])) {
  30.         echo '<i>' . $mimetype . '</i><br />';
  31.     } else {
  32.         echo $mimetype . '<br />';
  33.     }
  34.  
  35. }
  36. ?>
  37. <br />
  38. <i>(<?php echo $strMIME_without; ?>)</i>
  39.  
  40. <br />
  41. <br />
  42. <br />
  43. <h2><?php echo $strMIME_available_transform; ?></h2>
  44. <table border="0" width="90%">
  45. <thead>
  46. <tr>
  47.     <th><?php echo $strMIME_transformation; ?></th>
  48.     <th><?php echo $strMIME_description; ?></th>
  49. </tr>
  50. </thead>
  51. <tbody>
  52. <?php
  53. $odd_row = true;
  54. foreach ($types['transformation'] as $key => $transform) {
  55.     $func = strtolower(preg_replace('@(\.inc\.php3?)$@i', '', $types['transformation_file'][$key]));
  56.     $desc = 'strTransformation_' . $func;
  57.     ?>
  58.     <tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
  59.         <td><?php echo $transform; ?></td>
  60.         <td><?php echo (isset($$desc) ? $$desc : '<i>' . sprintf($strMIME_nodescription, 'PMA_transformation_' . $func . '()') . '</i>'); ?></td>
  61.     </tr>
  62.     <?php
  63.     $odd_row = !$odd_row;
  64. }
  65. ?>
  66. </tbody>
  67. </table>
  68.  
  69. <?php
  70. /**
  71.  * Displays the footer
  72.  */
  73. require_once './libraries/footer.inc.php';
  74. ?>
  75.