Add Edit this node/block link to Drupal View
It is often useful to add a "edit this node" or "edit this block" if a site editor is viewing content on a page that is not the node page itself. This includings viewing content from a "view" page where the normal edit tabs are not present for nodes or blocks.
Add the snippet to the template page for the content type. ie node-TYPE.tpl.php
Replace:
TYPE with the machine readable name of the content type.
TODO: ADD RELEVANT CONTENT TYPE with machine readable name of the content type.
if (user_access('edit any TODO: ADD RELEVANT CONTENT TYPE')) { print l('Edit this', 'node/'.$node->nid.'/edit'); }
New comments for this tutorial have been turned off.
Comments
Nice one, very handy!
thanks, just wht I was looking for.
if (node_access('update', $nid , $user))
{ echo " ";
echo l('Edit', 'node/'.$nid.'/edit');
echo "";
}
Thanks for the great information provided..........