By jitendra_k on
Just clicked on Content , it displays nodes of all types. Now i had written some functions in node.module to display particular content type(say wbo). Now i am listing all nodes of type wbo. But the problem is i cant deleted that nodes from my page (i.e. Shows listing page by url : http://localhost/drupal_demo/ admin/story/wbo).
Please suggest what should i do for deletion of nodes.
Comments
Its done..
Its done by doing some R n D.
I wrote function
function node_admin_wbo_content()
{
if ($_POST['operation'] == 'delete' && $_POST['nodes'])
{
return drupal_get_form('node_multiple_delete_confirm');
}
}
Now its working...