I'm using Drupal 7 to build a fairly simple directory site. I'm trying to theme my search results page the same as a taxonomy page, but as you may know, the results arrive by a completely different process in those two situations. I've copied the search-result.tpl.php file from the Search module to my own theme, and am trying to take advantage of the $result variable returned by the module. However, it doesn't seem to be as simple as print render($result);

I tried to isolate the relevant node object within $result and perform render() on it, like so:

$content=Array(); $content['#node'] = $result['node'];
print render($content);

But that just throws an error (can't use object as array) or simply returns nothing.

$result['node'] definitely contains the fields I want to echo on the page, so what am I doing wrong?

link|improve this question

I'm not sure how to solve your specific problem, but you could inspect the object using var_dump - php.net/manual/en/function.var-dump.php – Aaron Newton Feb 3 at 11:02
Yes, a simple print_r showed me that the variable is what I wanted to work with, as I mentioned. – Isaac Lubow Feb 3 at 14:41
If you down-voted me, could you at least explain why? – Isaac Lubow Feb 3 at 14:42
Incidentally, the answer lies in field_attach_view(). – Isaac Lubow Feb 3 at 14:43
Closed as cross-site posting by same user: drupal.stackexchange.com/questions/21505/… – casperOne Feb 3 at 20:20
feedback

closed as off topic by casperOne Feb 3 at 20:20

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

You can try this:

<?php
foreach ($result['node'] as $k => $v) {
  // do stuff with it, example: 
  echo '<h2>' . $v->title . '</h2>';
}
?>

And, if you installed the http://drupal.org/projects/devel Devel module:

<?php
foreach ($result['node'] as $k => $v) {
  // Inspect the vars available:
  dpm($v);
  // do stuff with it, example: 
  echo '<h2>' . $v->title . '</h2>';
}
?>
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.