php - how to print file path location in imce drupal? -


i want display file location path in imce : opened imce-file-list.tpl.php , found :

 <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> 

i want print $file[path] not working enter image description here

salaktarus,

try use $imce['furl'] variable.

from drupal.org/node/1738218#comment-10674360


Comments

Popular posts from this blog

sql - VB.NET Operand type clash: date is incompatible with int error -

SVG stroke-linecap doesn't work for circles in Firefox? -

python - TypeError: Scalar value for argument 'color' is not numeric in openCV -