function cms_portfolio_node_info in Glazed CMS Portfolio 7
Implements hook_node_info().
File
Code
function cms_portfolio_node_info() {
$items = array(
'portfolio' => array(
'name' => t('Portfolio Project'),
'base' => 'node_content',
'description' => t('Page with one or more images. Each image has it\'s own text area. '),
'has_title' => '1',
'title_label' => t('Title'),
'help' => '',
),
);
drupal_alter('node_info', $items);
return $items;
}