Код выводит в блоке список прикреплённых к документу файлов.
<?php
if (arg(0) == 'node' && is_numeric(arg(1)) && is_null(arg(2))) {
$nid = (int)arg(1);
$files = upload_load(node_load($nid));
$output = theme_upload_attachments($files);
return $output;
}
?>
Comments
Post new comment