stephpy/timeline-bundle

Accessing raw component info without calling timeline_component_render

Closed this issue · 3 comments

Hi, I am wondering if there is a way in twig when displaying a timeline, to access some of the component data without having to call the full timeline_component_render.
For example sometimes I have a complex layout where I would display just the subject name first, then verb, then below a full subject render.
Is there a way to get the component data as a variable?
something like
set data = timeline.getComponentData('subject')

Once again, thank you so much :)

This works for me:

 {% for action in timeline %}

 {% set subject = action.getComponent('subject').data %}

// Your code here using the subject object... 
// e.g. Firstname: {{ subject.firstname }} etc

{% endfor %}

Hi,

Can't say better than @mpclarkson :)

Thank you both, great!