Submitted by ner on Fri, 2011-03-11 10:09
If you're using the Views Custom Field Drupal module and need to know which fields are available for your custom PHP, simply add the following code to the start of your custom field value box, and then run your view as normal:
<?php
print var_export($data, TRUE);
?>
