Pathologic was missing because of a .git folder inside.
[yaffs-website] / web / modules / contrib / slick_media / slick_media.module
1 <?php
2
3 /**
4  * @file
5  * Provides Slick carousel integration with Media entity.
6  */
7
8 use Drupal\Core\Routing\RouteMatchInterface;
9
10 /**
11  * Implements hook_help().
12  */
13 function slick_media_help($route_name, RouteMatchInterface $route_match) {
14   switch ($route_name) {
15     case 'help.page.slick_media':
16       return check_markup(file_get_contents(dirname(__FILE__) . '/README.txt'));
17   }
18 }