You are here

slick_paragraphs.module in Slick Paragraphs 8.2

Same filename and directory in other branches
  1. 8 slick_paragraphs.module

Provides Slick Carousel integration with Paragraphs.

File

slick_paragraphs.module
View source
<?php

/**
 * @file
 * Provides Slick Carousel integration with Paragraphs.
 */

/**
 * Implements hook_help().
 */
function slick_paragraphs_help($route_name) {
  if ($route_name == 'help.page.slick_paragraphs') {
    $output = file_get_contents(dirname(__FILE__) . '/README.md');
    return function_exists('blazy_parse_markdown') ? blazy_parse_markdown($output) : '<pre>' . $output . '</pre>';
  }
  return '';
}

Functions

Namesort descending Description
slick_paragraphs_help Implements hook_help().