I'm trying to set up a views row using php filter.

Here's the devel dpm data:

http://i.imgur.com/IEA3ZTd.jpg

Here's what I use for the php filter Output value:

<img src="/sites/default/files/flag/<?php print ($data->field_field_country[0]['raw'][value]); ?>.png"/>

This is the error I get when I view the block on my homepage:

  • Notice: Use of undefined constant value - assumed 'value' in __lambda_func() (line 5 of /home1/mattcoad/public_html/work/iaad/sites/all/modules/views_php/plugins/views/views_php_handler_field.inc(202) : runtime-created function).
  • Notice: Use of undefined constant value - assumed 'value' in __lambda_func() (line 5 of /home1/mattcoad/public_html/work/iaad/sites/all/modules/views_php/plugins/views/views_php_handler_field.inc(202) : runtime-created function).
  • Notice: Use of undefined constant value - assumed 'value' in __lambda_func() (line 5 of /home1/mattcoad/public_html/work/iaad/sites/all/modules/views_php/plugins/views/views_php_handler_field.inc(202) : runtime-created function).
  • Notice: Use of undefined constant value - assumed 'value' in __lambda_func() (line 5 of /home1/mattcoad/public_html/work/iaad/sites/all/modules/views_php/plugins/views/views_php_handler_field.inc(202) : runtime-created function).
  • Notice: Use of undefined constant value - assumed 'value' in __lambda_func() (line 5 of /home1/mattcoad/public_html/work/iaad/sites/all/modules/views_php/plugins/views/views_php_handler_field.inc(202) : runtime-created function).
  • Notice: Use of undefined constant value - assumed 'value' in __lambda_func() (line 5 of /home1/mattcoad/public_html/work/iaad/sites/all/modules/views_php/plugins/views/views_php_handler_field.inc(202) : runtime-created function).
  • Notice: Use of undefined constant value - assumed 'value' in __lambda_func() (line 5 of /home1/mattcoad/public_html/work/iaad/sites/all/modules/views_php/plugins/views/views_php_handler_field.inc(202) : runtime-created function).
  • Notice: Use of undefined constant value - assumed 'value' in __lambda_func() (line 5 of /home1/mattcoad/public_html/work/iaad/sites/all/modules/views_php/plugins/views/views_php_handler_field.inc(202) : runtime-created function).
  • Notice: Use of undefined constant value - assumed 'value' in __lambda_func() (line 5 of /home1/mattcoad/public_html/work/iaad/sites/all/modules/views_php/plugins/views/views_php_handler_field.inc(202) : runtime-created function).
  • Notice: Use of undefined constant value - assumed 'value' in __lambda_func() (line 5 of /home1/mattcoad/public_html/work/iaad/sites/all/modules/views_php/plugins/views/views_php_handler_field.inc(202) : runtime-created function).
  • Notice: Use of undefined constant value - assumed 'value' in __lambda_func() (line 5 of /home1/mattcoad/public_html/work/iaad/sites/all/modules/views_php/plugins/views/views_php_handler_field.inc(202) : runtime-created function).
  • Notice: Use of undefined constant value - assumed 'value' in __lambda_func() (line 5 of /home1/mattcoad/public_html/work/iaad/sites/all/modules/views_php/plugins/views/views_php_handler_field.inc(202) : runtime-created function).

What does this mean and how can I fix it?

Comments

Jaypan’s picture

You need quotes around the word 'value'.

mattcoady’s picture

Thanks!