Showroom feature

This commit is contained in:
Bachir Soussi Chiadmi
2016-11-06 19:40:18 +01:00
parent e8cadc31e1
commit 7abf64be00
22 changed files with 7962 additions and 21 deletions

View File

@@ -12,3 +12,21 @@ function showroom_ctools_plugin_api($module = NULL, $api = NULL) {
return array("version" => "1");
}
}
/**
* Implements hook_node_info().
*/
function showroom_node_info() {
$items = array(
'showroom' => array(
'name' => t('Showroom'),
'base' => 'node_content',
'description' => '',
'has_title' => '1',
'title_label' => t('Name'),
'help' => '',
),
);
drupal_alter('node_info', $items);
return $items;
}