views_handler_field_comment_depth.inc

  1. 3.x modules/comment/views_handler_field_comment_depth.inc
  2. 2.x modules/comment/views_handler_field_comment_depth.inc

File

modules/comment/views_handler_field_comment_depth.inc
View source
  1. <?php
  2. /**
  3. * Field handler to display the depth of a comment
  4. */
  5. class views_handler_field_comment_depth extends views_handler_field {
  6. /**
  7. * Work out the depth of this comment
  8. */
  9. function render($values) {
  10. return count(explode('.', $values->comments_thread)) - 1;
  11. }
  12. }