* @license GNU General Public License, version 2 (GPL-2.0) * * For full copyright and license information, please see * the docs/CREDITS.txt file. * */ namespace phpbb\mention\source; class team extends base_user { /** @var int */ protected $cache_ttl = 300; /** * {@inheritdoc} */ protected function query(string $keyword, int $topic_id): string { /* * Select unique names of team members: each name should be selected only once * regardless of the number of groups the certain user is a member of * * For optimization purposes all team members are returned regardless of the keyword * Names filtering is done on the frontend * Results will be cached in a single file */ return $this->db->sql_build_query('SELECT_DISTINCT', [ 'SELECT' => 'u.username_clean, u.user_id', 'FROM' => [ USERS_TABLE => 'u', USER_GROUP_TABLE => 'ug', TEAMPAGE_TABLE => 't', ], 'WHERE' => 'ug.group_id = t.group_id AND ug.user_id = u.user_id AND ug.user_pending = 0 AND ' . $this->db->sql_in_set('u.user_type', [USER_NORMAL, USER_FOUNDER]), 'ORDER_BY' => 'u.username_clean' ]); } }