如何在 imce drupal 中打印文件路径位置?
how to print file path location in imce drupal?
我想在 imce 中显示文件位置路径:
我打开了 imce-file-list.tpl.php,我发现:
<tr id="<?php print $raw = rawurlencode($file['name']); ?>">
<td class="name"><?php print $raw; ?></td>
<td class="size" id="<?php print $file['size']; ?>"><?php print format_size($file['size']); ?></td>
<td class="width"><?php print $file['width']; ?></td>
<td class="height"><?php print $file['height']; ?></td>
<td class="date" id="<?php print $file['date']; ?>"><?php print format_date($file['date'], 'short'); ?></td>
</tr>
我想打印 $file[path] 但它不起作用
萨拉克塔鲁斯,
尝试使用 $imce['furl'] 变量。
我想在 imce 中显示文件位置路径: 我打开了 imce-file-list.tpl.php,我发现:
<tr id="<?php print $raw = rawurlencode($file['name']); ?>">
<td class="name"><?php print $raw; ?></td>
<td class="size" id="<?php print $file['size']; ?>"><?php print format_size($file['size']); ?></td>
<td class="width"><?php print $file['width']; ?></td>
<td class="height"><?php print $file['height']; ?></td>
<td class="date" id="<?php print $file['date']; ?>"><?php print format_date($file['date'], 'short'); ?></td>
</tr>
我想打印 $file[path] 但它不起作用
萨拉克塔鲁斯,
尝试使用 $imce['furl'] 变量。