chriwo/femanager_extended_search

Expand the search function of femanager to be able to filter by user groups

2.0.0 2017-10-18 23:23 UTC

This package is auto-updated.

Last update: 2024-04-10 18:00:26 UTC


README

Latest Stable Version License

What does it do?

Add and select box with frontend user groups to filter the frontend user by their group.

Frontend view searchbar

Frontend view searchbox

Installation / Configuration

Download the extension from github and upload it via ftp or use a composer based installation.

Installation with Composer

Install the extension in your (Composer)1 based TYPO3 project root with

composer require chriwo/femanager_extended_search

Installation as extension from TYPO3 Extension Repository (TER)

Download and install the extension with the extension manager module.

Configuration

Add the static TypoScript Femanager extended search.

In the TypoScript setup is it possible to exclude frontend user groups from select box. See the code snippet below and add frontend user groups ID as comma separated list to exclude them.

plugin.tx_femanager {
    settings {
        list {
            filter {
                searchgroup {
                    removeFromUserGroupSelection =
                }
            }
        }
    }
}