I am trying to extend this module,currently it lists all files within the root folder and its sub folders.

What I am trying to do is make it so that it will list the files if they are placed in the root folder but if there is a sub folder present it will show the name of the subfolder not the files (then when the button is clicked it will show the subfolders files).

I somehow need to echo the slug for the subfolders and not the files and possibly stop the merge array? because when I print_r($subfolders); it shows the data I want I just cannot pass it through

I have tried contacting pyroCMS but they are a bit confused as to what I am trying to achieve.

public function listing()
{
    if ( ! $this->content())
    {
        return '';
    }

    $folder_id  = $this->attribute('folder', ''); // Id or Path
    $limit      = $this->attribute('limit', '10');
    $offset     = $this->attribute('offset', '');
    $type       = $this->attribute('type', '');
    $fetch      = $this->attribute('fetch');

    if ( ! empty($folder_id) && (empty($type) || in_array($type, array('a','v','d','i','o'))))
    {
        if (is_numeric($folder_id))
        {
            $folder = $this->file_folders_m->get($folder_id);
        }
        elseif (is_string($folder_id))
        {
            $folder = $this->file_folders_m->get_by_path($folder_id);
        }
    }

    if (empty($folder))
    {
        return array();
    }

    if (in_array($fetch, array('root', 'subfolder')) &&
        $subfolders = $this->file_folders_m->folder_tree(
            $fetch === 'root' ? $folder->root_id : $folder->id
        ))

    {
        $ids = array_merge(array((int) $folder->id), array_keys($subfolders));
        $this->file_m->where_in('folder_id', $ids);
    }
    else
    {
        $this->file_m->where('folder_id', $folder->id);
    }

    $type AND $this->file_m->where('type', $type);
    $limit AND $this->file_m->limit($limit);
    $offset AND $this->file_m->limit($offset);

    $files = $this->file_m->get_all();
    $files AND array_merge($this->_files, assoc_array_prop($files));

    return $files;
}
link|improve this question

79% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.