Projet

Général

Profil

Paste
Télécharger (442 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / views / modules / comment / views_handler_field_comment_depth.inc @ 5d12d676

1
<?php
2

    
3
/**
4
 * @file
5
 * Definition of views_handler_field_comment_depth.
6
 */
7

    
8
/**
9
 * Field handler to display the depth of a comment.
10
 *
11
 * @ingroup views_field_handlers
12
 */
13
class views_handler_field_comment_depth extends views_handler_field {
14

    
15
  /**
16
   * Work out the depth of this comment.
17
   */
18
  public function render($values) {
19
    $comment_thread = $this->get_value($values);
20
    return count(explode('.', $comment_thread)) - 1;
21
  }
22

    
23
}