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 | <?php INCLUDE "tpl/tpl_css.php" ?>
|
---|
6 | <?php INCLUDE "tpl/tpl_javascript.php" ?>
|
---|
7 | </head>
|
---|
8 | <body>
|
---|
9 | <script type="text/javascript">
|
---|
10 | $('body').noContext();
|
---|
11 | </script>
|
---|
12 | <div id="resizer"></div>
|
---|
13 | <div id="shadow"></div>
|
---|
14 | <div id="dialog"></div>
|
---|
15 | <div id="alert"></div>
|
---|
16 | <div id="clipboard"></div>
|
---|
17 | <div id="all">
|
---|
18 | <div id="left">
|
---|
19 | <div id="folders"></div>
|
---|
20 | </div>
|
---|
21 | <div id="right">
|
---|
22 | <div id="toolbar">
|
---|
23 | <div>
|
---|
24 | <a href="kcact:upload"><?php echo $this->label("Upload") ?></a>
|
---|
25 | <a href="kcact:refresh"><?php echo $this->label("Refresh") ?></a>
|
---|
26 | <a href="kcact:settings"><?php echo $this->label("Settings") ?></a>
|
---|
27 | <a href="kcact:maximize"><?php echo $this->label("Maximize") ?></a>
|
---|
28 | <a href="kcact:about"><?php echo $this->label("About") ?></a>
|
---|
29 | <div id="loading"></div>
|
---|
30 | </div>
|
---|
31 | </div>
|
---|
32 | <div id="settings">
|
---|
33 |
|
---|
34 | <div>
|
---|
35 | <fieldset>
|
---|
36 | <legend><?php echo $this->label("View:") ?></legend>
|
---|
37 | <table summary="view" id="view"><tr>
|
---|
38 | <th><input id="viewThumbs" type="radio" name="view" value="thumbs" /></th>
|
---|
39 | <td><label for="viewThumbs"> <?php echo $this->label("Thumbnails") ?></label> </td>
|
---|
40 | <th><input id="viewList" type="radio" name="view" value="list" /></th>
|
---|
41 | <td><label for="viewList"> <?php echo $this->label("List") ?></label></td>
|
---|
42 | </tr></table>
|
---|
43 | </fieldset>
|
---|
44 | </div>
|
---|
45 |
|
---|
46 | <div>
|
---|
47 | <fieldset>
|
---|
48 | <legend><?php echo $this->label("Show:") ?></legend>
|
---|
49 | <table summary="show" id="show"><tr>
|
---|
50 | <th><input id="showName" type="checkbox" name="name" /></th>
|
---|
51 | <td><label for="showName"> <?php echo $this->label("Name") ?></label> </td>
|
---|
52 | <th><input id="showSize" type="checkbox" name="size" /></th>
|
---|
53 | <td><label for="showSize"> <?php echo $this->label("Size") ?></label> </td>
|
---|
54 | <th><input id="showTime" type="checkbox" name="time" /></th>
|
---|
55 | <td><label for="showTime"> <?php echo $this->label("Date") ?></label></td>
|
---|
56 | </tr></table>
|
---|
57 | </fieldset>
|
---|
58 | </div>
|
---|
59 |
|
---|
60 | <div>
|
---|
61 | <fieldset>
|
---|
62 | <legend><?php echo $this->label("Order by:") ?></legend>
|
---|
63 | <table summary="order" id="order"><tr>
|
---|
64 | <th><input id="sortName" type="radio" name="sort" value="name" /></th>
|
---|
65 | <td><label for="sortName"> <?php echo $this->label("Name") ?></label> </td>
|
---|
66 | <th><input id="sortType" type="radio" name="sort" value="type" /></th>
|
---|
67 | <td><label for="sortType"> <?php echo $this->label("Type") ?></label> </td>
|
---|
68 | <th><input id="sortSize" type="radio" name="sort" value="size" /></th>
|
---|
69 | <td><label for="sortSize"> <?php echo $this->label("Size") ?></label> </td>
|
---|
70 | <th><input id="sortTime" type="radio" name="sort" value="date" /></th>
|
---|
71 | <td><label for="sortTime"> <?php echo $this->label("Date") ?></label> </td>
|
---|
72 | <th><input id="sortOrder" type="checkbox" name="desc" /></th>
|
---|
73 | <td><label for="sortOrder"> <?php echo $this->label("Descending") ?></label></td>
|
---|
74 | </tr></table>
|
---|
75 | </fieldset>
|
---|
76 | </div>
|
---|
77 |
|
---|
78 | </div>
|
---|
79 | <div id="files">
|
---|
80 | <div id="content"></div>
|
---|
81 | </div>
|
---|
82 | </div>
|
---|
83 | <div id="status"><span id="fileinfo"> </span></div>
|
---|
84 | </div>
|
---|
85 | </body>
|
---|
86 | </html>
|
---|