function classy_paragraphs_test_paragraphs_info in Classy paragraphs 7
Implements hook_paragraphs_info().
File
Code
function classy_paragraphs_test_paragraphs_info() {
$items = array(
'cp_test_content' => array(
'name' => 'Content (test)',
'bundle' => 'cp_test_content',
'locked' => '1',
),
'cp_test_content_multiple_classes' => array(
'name' => 'Content multiple classes (test)',
'bundle' => 'cp_test_content_multiple_classes',
'locked' => '1',
),
);
return $items;
}