I am trying to code my first Drupal module and everything works fine so far except that when the content is submitted it doesn't show up in the 'view', nor as part of any content that was created for that user. I am using the nodeapi and here is the code from my bid.module file:
function bid_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
if($node->type != 'bid') {
return;
}
switch($op) {
case 'load':
return _bid_load($node);
case 'insert':
_bid_insert($node);
break;
case 'delete':
_bid_delete($node);
break;
case 'update':
_bid_delete($node);
_bid_insert($node);
break;
case 'view':
//display your bid
$node->content['amount'] = array(
'#value' => theme('transact_node_status', $node),
'#weight' => 5,
);
break;
}
}
Any thoughts? Thanks,