Как добавить в выдачу "advanced sphinx" картинку?

Главные вкладки

Аватар пользователя superintendent superintendent 13 августа 2014 в 15:11

Как добавить в выдачу "advanced sphinx" картинку? если например поле картинки - product_image?

Пробовал эти варианты, но везде вместо изображения выводит только пустой квадрат.

<?php
$image_settings 
= array(
    
'style_name' => 'thumbnail',
    
'path' => $node->product_image***91;'und'***93;***91;0***93;***91;'uri'***93;,
    
'attributes' => array('class' => 'image'),
    
'getsize' => FALSE,);
     print 
theme('image_style'$image_settings);
?>

<?php
$image_settings 
= array(
    
'style_name' => 'thumbnail',
    
'path' => $record->uri,
    
'alt' => $record->alt,
    
'title' => $record->title,
    
'attributes' => array('class' => 'image'),
    
'getsize' => FALSE,
    );
    print 
theme('image_style'$image_settings);
?>
<?php
$image 
= array(
'path' => $file->uri// путь до картинки.
'style_name' => 'thumbnail'// - имя стиля.
);
print 
theme('image_style'$image);
?>

***************************

<?php
// $Id: advanced_sphinx_items_result_main.tpl.php, v 1.0 2011/07/05 19:59:16 gagaga Exp $
/**
file advanced_sphinx_items_result_main.tpl.php
* Default theme implementation to item search result.
*
* Available variables:
* - $result: Array with all data:
* - $result['number']: Serial number search results.
* - $result['title']: Linked title to full node.
* - $result['excerpts']: .
* - $result['date']: Date and time of posting.
* - $result['username']: Linked login to node author.
* - $result['tax']: List of taxonomy term.
*/
?>
<li class="result-folded">
<h3 class="title-result"><span class="number-result"><?php print $result['number']; ?>.</span> <?php print $result['title']; ?></h3>
<?php if (isset($result['excerpts'])) { ?>
<div class="content-result">
<?php print $result['excerpts']; ?>
</div>
<?php ?>

<div class="info-result">
<?php if (isset($result['date'])) { ?>
<span class="date-result"><?php print $result['date']; ?>,</span>
<?php ?>

</div>
</li>?>

Комментарии