getColumn(); $methods = $column->getGetter() ?: $column->getIndex(); foreach ($methods as $method) { if ($column->getGetter() && is_callable([$row, $method]) && substr_compare('get', $method, 1, 3) !== 0 ) { $data = call_user_func([$row, $method]); } else { $data = $row->getData($method); } if (strlen($data) > 0) { $dataArr[] = $data; } } $data = implode($column->getSeparator(), $dataArr); return $data; } }