Нужно вывести изображение я страницу с помощью theme_image_style. Создал соотвветсвующий модуль, написал функцию:
function img_test_image_style() {
$img = array(
'path' => 'image/mafia.jpg',
'alt' => 'Swidish House Mafia',
'style_name' => 'my_custom_image_style',
'title' => 'The title of Swidish House Mafia',
);
return theme('image_style', array('element' => $img));
}
но изображение не выводиться. что не так сделал?
Комментарии
return theme('image_style', $img);