00001 <?php 00007 class views_handler_field_comment_depth extends views_handler_field { 00011 function render($values) { 00012 $comment_thread = $this->get_value($values); 00013 return count(explode('.', $comment_thread)) - 1; 00014 } 00015 }