_name = 'most_posts'; $this->_friendly_name = $language->get('forum', 'most_posts'); $this->_module = 'Forum'; $this->_icon = 'sort numeric up icon'; } protected function generator(): array { return [ 'SELECT post_creator, COUNT(post_content) AS `count` FROM nl2_posts WHERE deleted = 0 GROUP BY post_creator ORDER BY `count` DESC', 'post_creator', 'count' ]; } }