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
|
<?php $lang->setModule("core"); $lang->setBlock("flash_prop"); ?> <script type="text/javascript" src="<?php echo SpawConfig::getStaticConfigValue('SPAW_DIR') ?>plugins/core/dialogs/flash_prop.js"></script>
<script type="text/javascript"> <!-- var spawErrorMessages = new Array(); <?php echo 'spawErrorMessages["error_width_nan"] = "' . $lang->m('error_width_nan') . '";' . "\n"; echo 'spawErrorMessages["error_height_nan"] = "' . $lang->m('error_height_nan') . '";' . "\n"; ?> //--> </script> <table border="0" cellspacing="0" cellpadding="2" width="336"> <form name="img_prop" id="img_prop"> <tr> <td><?php echo $lang->m('source')?>:</td> <td colspan="3" nowrap><input type="text" name="csrc" id="csrc" class="input" size="32"> <input type="button" value="..." onClick="SpawFlashPropDialog.browseClick()" class="bt"></td> </tr> <tr> <td><?php echo $lang->m('width')?>:</td> <td nowrap> <input type="text" name="cwidth" id="cwidth" size="3" maxlength="3" class="input3chars"> </td> <td><?php echo $lang->m('height')?>:</td> <td nowrap> <input type="text" name="cheight" id="cheight" size="3" maxlength="3" class="input3chars"> </td> </tr> <tr> <td colspan="4" nowrap> <hr width="100%"> </td> </tr> <tr> <td colspan="4" align="right" valign="bottom" nowrap> <input type="button" value="<?php echo $lang->m('ok')?>" onClick="SpawFlashPropDialog.okClick()" class="bt"> <input type="button" value="<?php echo $lang->m('cancel')?>" onClick="SpawFlashPropDialog.cancelClick()" class="bt"> </td> </tr> </form> </table>
|