Pathologic was missing because of a .git folder inside.
[yaffs-website] / web / modules / contrib / video / video.module
1 <?php
2
3 /**
4  * @file
5  * Exposes global functionality for video fields.
6  */
7
8 use Drupal\Core\Entity\EntityInterface;
9 use Drupal\Core\Routing\RouteMatchInterface;
10 use Drupal\file\Entity\File;
11 use Drupal\field\FieldStorageConfigInterface;
12 use Drupal\field\FieldConfigInterface;
13
14 /**
15  * Implements hook_theme().
16  */
17 function video_theme() {
18   return array(
19     'video_player_formatter' => array(
20       'variables' => array('items' => NULL, 'player_attributes' => NULL)
21     ),
22   );
23 }