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

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

Making Empty C++ Project: General exception (Exception from HRESULT:0x80131500) Visual Studio Community 2015 -

How to fix java warning for "The value of the local variable is not used " -