I use this code: PHP Sort Files In Directory by Type

But it opens up all directories. I just want directories that leads to the selected item to be open.

link|improve this question

67% accept rate
feedback

1 Answer

If im understanding you correctly, you don't want to recursively display the directories under the target. I think you would remove the recursive call from the code above like this :

/* Rendering */
function list_dir($path)
{

    ...

    foreach($items as $item)
    {
        if ($item->type=='dir')
        {
            echo '<li class="folder"><a href="#" class="toggle">'.$item->entry.'</a></li>';
            //list_dir($item->full_path); REMOVE THIS
        }
        else
        {
            echo '<li class="file"><a href="file-details.php?file='.urlencode($item->full_path).'" class="arrow_icon modal">'.$item->entry.'</a></li>';
        }
    }

    echo "</ul>";

}
link|improve this answer
I want the recursive function to be there. But when I arrive to the page the folders sholud be closed. And when I click on a folder, the page will be reload and the folder open. In the code above, with recursive functionality, all subfodlers will also be open. I want the navigation functionality. It is not a site map. – Peter Westerlund May 4 '11 at 8:32
Oh, you need to write the javascript for that then. The original post you linked to said he used jQuery to open and close folders, and the "toggle", "folder" and "treeview" classes are the targets you need to look at. I'd recommend messaging him to see if you could get the js for it. – kniteli May 11 '11 at 23:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.