| Versionen | |
|---|---|
| drupal6 – drupal7 | forum_node_info() |
Implementation of hook_node_info().
modules/
<?php
function forum_node_info() {
return array(
'forum' => array(
'name' => t('Forum topic'),
'module' => 'forum',
'description' => t('A <em>forum topic</em> is the initial post to a new discussion thread within a forum.'),
'title_label' => t('Subject'),
)
);
}
?>
Kommentare
Kommentar hinzufügen