Changing files module default search filter.
Created 6 years ago by dnc123

I want to change column that files module use to search for a file, by default it's name, I want to set it to fake_filename, which is another field that I've created through CP and assigned to images folder.

So far what I've found is that the default logic for this problem sits in Anomaly\FilesModule\File\Table\FileTableBuilder, $filters array:


        'search' => [
            'fields' => [
                'name',
                'keywords',
                'mime_type',
            ],
        ],
        'folder',
    ];```

I've tried changing `name` to `fake_filename` and `entry.fake_filename` , but then I'm getting `Call to a member function getQuery() on null`

Any ideas?
ryanthompson  —  6 years ago

You can bind the table class and set your own filters.

fryiee  —  5 years ago