You are here

function commons_posts_node_info in Drupal Commons 7.3

Implements hook_node_info().

File

modules/commons/commons_posts/commons_posts.features.inc, line 61
commons_posts.features.inc

Code

function commons_posts_node_info() {
  $items = array(
    'post' => array(
      'name' => t('Post'),
      'base' => 'node_content',
      'description' => t('Start a conversation or share some information.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  return $items;
}