The Devel module is very

Posts: 2102
Joined: 08/07/2007
AdministratoreLiTe!

The Devel module is very helpful. With it enabled, you can use

<?php
  dpm
($product);
?>

This is equivalent to
<?php
  drupal_set_message
('<pre>'. print_r($product, true) .'</pre>');
?>

which will show you the entire structure of the $product variable.

Getting CCK field value from $products? By: setfree (5 replies) Mon, 05/12/2008 - 14:48