Code Coverage  | 
     ||||||||||
Classes and Traits  | 
      Functions and Methods  | 
      Lines  | 
     ||||||||
| Total |         | 
      0.00%  | 
      0 / 1  | 
              | 
      0.00%  | 
      0 / 1  | 
      CRAP |         | 
      0.00%  | 
      0 / 3  | 
     
| TrackerUserRecent |         | 
      0.00%  | 
      0 / 1  | 
              | 
      0.00%  | 
      0 / 1  | 
      2 |         | 
      0.00%  | 
      0 / 3  | 
     
| getContent |         | 
      0.00%  | 
      0 / 1  | 
      2 |         | 
      0.00%  | 
      0 / 3  | 
     |||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\tracker\Controller\TrackerUserRecent. | |
| */ | |
| namespace Drupal\tracker\Controller; | |
| use Drupal\Core\Controller\ControllerBase; | |
| use Drupal\user\UserInterface; | |
| /** | |
| * Controller for tracker.users_recent_content route. | |
| */ | |
| class TrackerUserRecent extends ControllerBase { | |
| /** | |
| * Content callback for the tracker.users_recent_content route. | |
| */ | |
| public function getContent(UserInterface $user) { | |
| module_load_include('inc', 'tracker', 'tracker.pages'); | |
| return tracker_page($user); | |
| } | |
| } |