I'm currently developing a module for Drupal 6, in which I have created a custom content type.
I'm able to create/update/delete a node of this content type by using hook_form
, hook_insert
and so on.
Now what I want is displaying the node when I click on it in my content list (tab "view"). I don't understand how to do this. Currently Drupal only displays a double dash for the title and antoher one for the body.
I tried using hook_view
and hook_nodeapi
with $op == 'view'
, but neither seem to work.
I think it must be a pretty basic thing, but I'm a Drupal noob and there are still a lot I don't understand about it.
Any hints would be great! Thanks!