paragraphs_bundles-1.0.x-dev/modules/paragraph_bundle_3d_carousel/paragraph_bundle_3d_carousel.module
modules/paragraph_bundle_3d_carousel/paragraph_bundle_3d_carousel.module
<?php
/**
* @file
* Paragraph Bundle 3D Carousel.
*
* Filename: paragraph_bundle_3d_carousel.module
* Website: https://www.flashwebcenter.com
* Description: template.
* Developer: Alaa Haddad https://www.alaahaddad.com.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function paragraph_bundle_3d_carousel_help($route_name, RouteMatchInterface $route_match) {
if ($route_name === 'help.page.paragraph_bundle_3d_carousel') {
return paragraphs_bundles__helper_render_readme();
}
return NULL;
}
/**
* Implements hook_theme().
*/
function paragraph_bundle_3d_carousel_theme($existing, $type, $theme, $path) {
return [
'paragraph__3d_carousel_bundle' => [
'base hook' => 'paragraph',
],
];
}
