tpl_browser.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>KCFinder: /<?php echo $this->session['dir'] ?></title>
  5. <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
  6. <?php INCLUDE "tpl/tpl_css.php" ?>
  7. <?php INCLUDE "tpl/tpl_javascript.php" ?>
  8. </head>
  9. <body>
  10. <div id="resizer"></div>
  11. <div id="menu"></div>
  12. <div id="clipboard"></div>
  13. <div id="all">
  14. <div id="left">
  15. <div id="folders"></div>
  16. </div>
  17. <div id="right">
  18. <div id="toolbar">
  19. <div>
  20. <a href="kcact:upload"><span><?php echo $this->label("Upload") ?></span></a>
  21. <a href="kcact:refresh"><span><?php echo $this->label("Refresh") ?></span></a>
  22. <a href="kcact:settings"><span><?php echo $this->label("Settings") ?></span></a>
  23. <a href="kcact:maximize"><span><?php echo $this->label("Maximize") ?></span></a>
  24. <a href="kcact:about"><span><?php echo $this->label("About") ?></span></a>
  25. <div id="loading"></div>
  26. </div>
  27. </div>
  28. <div id="settings">
  29. <div>
  30. <fieldset>
  31. <legend><?php echo $this->label("View:") ?></legend>
  32. <table summary="view" id="view"><tr>
  33. <th><input id="viewThumbs" type="radio" name="view" value="thumbs" /></th>
  34. <td><label for="viewThumbs">&nbsp;<?php echo $this->label("Thumbnails") ?></label> &nbsp;</td>
  35. <th><input id="viewList" type="radio" name="view" value="list" /></th>
  36. <td><label for="viewList">&nbsp;<?php echo $this->label("List") ?></label></td>
  37. </tr></table>
  38. </fieldset>
  39. </div>
  40. <div>
  41. <fieldset>
  42. <legend><?php echo $this->label("Show:") ?></legend>
  43. <table summary="show" id="show"><tr>
  44. <th><input id="showName" type="checkbox" name="name" /></th>
  45. <td><label for="showName">&nbsp;<?php echo $this->label("Name") ?></label> &nbsp;</td>
  46. <th><input id="showSize" type="checkbox" name="size" /></th>
  47. <td><label for="showSize">&nbsp;<?php echo $this->label("Size") ?></label> &nbsp;</td>
  48. <th><input id="showTime" type="checkbox" name="time" /></th>
  49. <td><label for="showTime">&nbsp;<?php echo $this->label("Date") ?></label></td>
  50. </tr></table>
  51. </fieldset>
  52. </div>
  53. <div>
  54. <fieldset>
  55. <legend><?php echo $this->label("Order by:") ?></legend>
  56. <table summary="order" id="order"><tr>
  57. <th><input id="sortName" type="radio" name="sort" value="name" /></th>
  58. <td><label for="sortName">&nbsp;<?php echo $this->label("Name") ?></label> &nbsp;</td>
  59. <th><input id="sortType" type="radio" name="sort" value="type" /></th>
  60. <td><label for="sortType">&nbsp;<?php echo $this->label("Type") ?></label> &nbsp;</td>
  61. <th><input id="sortSize" type="radio" name="sort" value="size" /></th>
  62. <td><label for="sortSize">&nbsp;<?php echo $this->label("Size") ?></label> &nbsp;</td>
  63. <th><input id="sortTime" type="radio" name="sort" value="date" /></th>
  64. <td><label for="sortTime">&nbsp;<?php echo $this->label("Date") ?></label> &nbsp;</td>
  65. <th><input id="sortOrder" type="checkbox" name="desc" /></th>
  66. <td><label for="sortOrder">&nbsp;<?php echo $this->label("Descending") ?></label></td>
  67. </tr></table>
  68. </fieldset>
  69. </div>
  70. </div>
  71. <div id="files">
  72. <div id="content"></div>
  73. </div>
  74. </div>
  75. <div id="status"><span id="fileinfo">&nbsp;</span></div>
  76. </div>
  77. </body>
  78. </html>