Drupal Display Suite Code Field Issue: How to output Tokens, or PHP $entity inline

2.7k Views Asked by At

I am attempting to get two fields to display inline. Specifically, I need the Locator, and the Body fields to display inline.

My Locator simply states the location of a post in plain text.
i.e. "Duluth, MN - "

My Body is the story.
i.e. "Are strange things happening in your house? Lights turning off and on by themselves? Or are you hearing voices in the basement?"

I'm attempting to display them inline but am having the hardest time.
i.e. "Duluth, MN - Are strange things happening in your house? Lights turning off and on by themselves? Or are you hearing voices in the basement?"

They need to be two separate fields for use in a Geo Locator.

I use the Display Suite module, and from my web searches I have found that it is possible to use the custom Code Field option to pull the data by Token, or PHP $entity.

I can get it working just fine with both Token, and PHP $entity, but cannot figure out how to get them to be inline?
i.e My Result is always:
"Duluth, MN -
Are strange things happening in your house? Lights turning off and on by themselves? Or are you hearing voices in the basement?"

I'm sure I'm missing something easy, and/or just overlooking something.

Here is the code I've used:

Works! Tokens!

[node:field-locator] - [node:body]

Works! PHP!

<?php print 
    $entity->field_locator['und'][0]['value']; 
?>

Doesn't Work!? PHP!

<?php print 
    $entity->field_locator['und'][0]['value'];
    " - ";
    $entity->body['und'][0]['value'];
?>

Works! PHP!

<?php print 
    $entity->field_locator['und'][0]['value'];
?>

<?php print 
    " - ";
?>

<?php print 
    $entity->body['und'][0]['value'];
?>
1

There are 1 best solutions below

0
On

If you want to concatenate two strings in php, you have to use the "." operator. So, for printing many variables on the same line, you have to concatenate them:

<?php print $entity->field_locator['und'][0]['value'] ." - " . $entity->body['und'][0]['value'];
?>

I hope it help!