Download & Extend

edit and delete link for forum topics

Project:Admin links
Version:6.x-1.8
Component:Documentation
Category:feature request
Priority:normal
Assigned:Unassigned
Status:active

Issue Summary

Hello! I use advanced forum. I'd like the edit/delete links to appear next to the reply link. The reply link is appears with $links, but not the admin links. How do you call on admin links?

Comments

#1

I never figured out how to do this with admin links, but I put this code in the template file to accomplish the same result:
Edit:

<?php
print l('Edit', 'node/' . $nid . '/edit');
?>

Delete:
<?php
print l('Delete', 'node/' . $nid . '/delete');
?>
nobody click here