{$field->field_alias}
  *
  * The above will guarantee that you'll always get the correct data,
  * regardless of any changes in the aliasing that might happen if
  * the view is modified.
  */
?>
node_data_field_video_link_field_video_link_url)) {
	$remarks = t("Vaata ka videot");
}
if (isset($row->node_data_field_video_link_field_audio_link_url)) {
	if ($remarks) {
		$remarks .= " ";
	}
	$remarks .= t("Kuula ka audiot");
}
if ($remarks) {
	$output = "".$row->node_title." ".$remarks."";
}
if ($row->node_comment_statistics_comment_count > 0) {
	print $output." "."(".  $row->node_comment_statistics_comment_count .")";
} else {
	print $output;
}
//print var_export($row, true);
?>