Блок. Прикреплённые файлы
Код выводит в блоке список прикреплённых к документу файлов.
<?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;
}
?>
Ссылка:
Show node attachments in a block 


Комментарии
Ищу сниппет вывода последней картинки (imagefield) в блок на главную
Комментировать