function bootstrap_carousel_node_info in bootstrap_carousel 7
Implements hook_node_info().
File
- ./
bootstrap_carousel.module, line 33 - Bootstrap carousel module hooks.
Code
function bootstrap_carousel_node_info() {
return array(
'bootstrap_carousel' => array(
'name' => t('Carousel'),
'base' => 'node_content',
'has_title' => TRUE,
'title_label' => t('Carousel Title'),
'description' => t('Create a new Carousel using Bootstrap Javascript.'),
),
);
}