Work out the depth of this comment
Overrides FieldPluginBase::render
File
- drupal/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Depth.php, line 28
- Definition of Drupal\comment\Plugin\views\field\Depth.
Class
- Depth
- Field handler to display the depth of a comment.
Namespace
Drupal\comment\Plugin\views\field
Code
function render($values) {
$comment_thread = $this
->get_value($values);
return count(explode('.', $comment_thread)) - 1;
}