Changeset 660
- Timestamp:
- 01/15/07 23:22:56 (6 years ago)
- Location:
- trunk/plugins/ExtendedFileManager
- Files:
-
- 3 modified
-
config.inc.php (modified) (1 diff)
-
images.php (modified) (3 diffs)
-
manager.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/ExtendedFileManager/config.inc.php
r604 r660 37 37 */ 38 38 39 $IMConfig['backend_url'] = "backend.php?__plugin=ExtendedFileManager& ";39 $IMConfig['backend_url'] = "backend.php?__plugin=ExtendedFileManager&"; 40 40 41 41 /** -
trunk/plugins/ExtendedFileManager/images.php
r608 r660 89 89 <tr> 90 90 <td><img src="<?php print $IMConfig['base_url'];?>icons/folder_small.gif" alt="" /></td> 91 <th nowrap ><a href="<?php print $IMConfig['backend_url']; ?>__function=images&mode=<?php echo $insertMode;?>&dir=<?php echo rawurlencode($path); ?>&viewtype=<?php echo $afruViewType; ?>" onclick="updateDir('<?php echo $path; ?>')" title="<?php echo $dir['entry']; ?>">91 <th nowrap="nowrap"><a href="<?php print $IMConfig['backend_url']; ?>__function=images&mode=<?php echo $insertMode;?>&dir=<?php echo rawurlencode($path); ?>&viewtype=<?php echo $afruViewType; ?>" onclick="updateDir('<?php echo $path; ?>')" title="<?php echo $dir['entry']; ?>"> 92 92 <?php 93 93 if(strlen($dir['entry'])>$maxNameLength) echo substr($dir['entry'],0,$maxNameLength)."..."; else echo $dir['entry']; 94 94 ?> 95 95 </a></th> 96 <td colspan="2" nowrap >Folder</td>97 98 <td nowrap ><?php echo date("d.m.y H:i",$dir['stat']['mtime']); ?></td>99 100 <td class="actions" nowrap >96 <td colspan="2" nowrap="nowrap">Folder</td> 97 98 <td nowrap="nowrap"><?php echo date("d.m.y H:i",$dir['stat']['mtime']); ?></td> 99 100 <td class="actions" nowrap="nowrap"> 101 101 <a href="<?php print $IMConfig['backend_url']; ?>__function=images&mode=<?php echo $insertMode;?>&dir=<?php echo $relative; ?>&deld=<?php echo rawurlencode($path); ?>&viewtype=<?php echo $afruViewType; ?>" title="Trash" onclick="return confirmDeleteDir('<?php echo $dir['entry']; ?>', <?php echo $dir['count']; ?>);" style="border:0px;"><img src="<?php print $IMConfig['base_url'];?>img/edit_trash.gif" height="15" width="15" alt="Trash" border="0" /></a> 102 102 <?php if ($IMConfig['allow_rename']) { ?> … … 127 127 <td><?php echo Files::formatSize($file['stat']['size']); ?></td> 128 128 <td><?php if($file['image'][0] > 0){ echo $file['image'][0].'x'.$file['image'][1]; } ?></td> 129 <td nowrap ><?php echo date("d.m.y H:i",$file['stat']['mtime']); ?></td>129 <td nowrap="nowrap"><?php echo date("d.m.y H:i",$file['stat']['mtime']); ?></td> 130 130 <td class="actions"> 131 131 <?php if($IMConfig['img_library'] && $IMConfig['allow_edit_image'] && $file['image'][0] > 0) { ?> 132 132 <a href="javascript:;" title="Edit" onclick="editImage('<?php echo rawurlencode($file['relative']);?>');"><img src="<?php print $IMConfig['base_url'];?>img/edit_pencil.gif" height="15" width="15" alt="Edit" border="0" /></a> 133 133 <?php } ?> 134 <a href="<?php print $IMConfig['backend_url']; ?>__function=images& dir=<?php echo $relative; ?>&delf=<?php echo rawurlencode($file['relative']);?>&mode=<?php echo $insertMode;?>&viewtype=<?php echo $afruViewType; ?>" title="Trash" onclick="return confirmDeleteFile('<?php echo $entry; ?>');"><img src="<?php print $IMConfig['base_url'];?>img/edit_trash.gif" height="15" width="15" alt="Trash" border="0" /></a>134 <a href="<?php print $IMConfig['backend_url']; ?>__function=images&dir=<?php echo $relative; ?>&delf=<?php echo rawurlencode($file['relative']);?>&mode=<?php echo $insertMode;?>&viewtype=<?php echo $afruViewType; ?>" title="Trash" onclick="return confirmDeleteFile('<?php echo $entry; ?>');"><img src="<?php print $IMConfig['base_url'];?>img/edit_trash.gif" height="15" width="15" alt="Trash" border="0" /></a> 135 135 <?php if ($IMConfig['allow_rename']) { ?> 136 136 <a href="#" title="Rename" onclick="renameFile('<?php echo rawurlencode($file['relative']);?>'); return false;"><img src="<?php print $IMConfig['base_url'];?>img/edit_rename.gif" height="15" width="15" alt="Rename" border="0" /></a> … … 250 250 251 251 ?> 252 <html> 252 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 253 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 254 <html xmlns="http://www.w3.org/1999/xhtml"> 253 255 <head> 254 256 <title>File List</title> -
trunk/plugins/ExtendedFileManager/manager.php
r631 r660 71 71 } 72 72 ?> 73 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 74 <html> 73 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 74 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 75 <html xmlns="http://www.w3.org/1999/xhtml"> 75 76 <head> 76 77 <title>Insert <?php echo ($insertMode == 'image' ? 'Image' : 'File Link') ?></title>
