I've created a View called 'Other member's which I only want to be displayed to logged in users. Is there a way where I can add this as a menu item next to 'View'and 'Edit'? how can i do this one for Drupal?

Recommended Answers

All 2 Replies

have you tried something like

if($_SESSION['username']==true){
    echo '<li>Other Members</li>';
    }else{
    echo '';
    }
Member Avatar for diafol

Even easier:

if($_SESSION['username']==true) echo '<li>Other Members</li>';
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.