Blame view

js/tiny_mce/plugins/ajaxfilemanager/ajax_save_as_form.php 1.69 KB
42868d70   andryeyev   Создал GIT
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
  <?php 
  	require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc" . DIRECTORY_SEPARATOR . "config.php");
  	
  ?>
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml">
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>Untitled Document</title>
  </head>
  
  <body>
      	<a href="#" class="jqmClose" id="windowSaveClose"><?php echo IMG_BTN_CANCEL; ?></a>
        <form id="formSaveAs" name="formSaveAs" action="" method="post">
      	<table class="tableForm" cellpadding="0" cellspacing="0">
        	<thead>
          	<tr>
            	<th colspan="2"><?php echo IMG_LBL_SAVE_AS; ?></th>
            </tr>
          </thead>
          <tbody>
          	<tr>
            	<th>
              	<label><?php echo IMG_LBL_NEW_NAME; ?></label>
              </th>
              <td>
              	<input type="text" id="new_name" class="input" name="new_name" value="" />
              </td>
            </tr>
            <tr>
            	<th>
              	<label><?php echo IMG_LBL_SAVE_TO; ?></label>
              </th>
              <td>
              	<select class="input" name="save_to">
                	
                </select>
              </td>
            </tr>
            <tr>
            	<th>&nbsp;
              </th>
              <td>
              <span class="comments">*</span>
              <?php echo IMG_NEW_NAME_COMMENTS; ?>
              </td>
            </tr>
          </tbody>
          <tfoot>
          	<tr>
          	<th>&nbsp;</th>
            <td><input type="button" class="button" value="<?php echo IMG_BTN_SAVE_AS; ?>" onclick="return saveAsImage();" /></td>
            </tr>
          </tfoot>
        </table>
  </body>
  </html>