You are here

function views_gantt_plugin_style_gantt::fill_child_ids in Views Gantt 7

1 call to views_gantt_plugin_style_gantt::fill_child_ids()
views_gantt_plugin_style_gantt::render in ./views_gantt_plugin_style_gantt.inc
Render the given style.

File

./views_gantt_plugin_style_gantt.inc, line 358
Contains the list style plugin.

Class

views_gantt_plugin_style_gantt
Style plugin to render Gantt charts.

Code

function fill_child_ids() {
  foreach ($this->tasks as $key => $task) {
    if ($task['parent_id']) {
      $this->tasks[$task['parent_id']]['child_ids'][] = $key;
    }
  }
}