PocketMine-MP 5.13.1 git-94e0bf954b1d6f258ea067e44a3fb6ae807062eb
ListCommand.php
1<?php
2
3/*
4 *
5 * ____ _ _ __ __ _ __ __ ____
6 * | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
7 * | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
8 * | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
9 * |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
10 *
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as published by
13 * the Free Software Foundation, either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * @author PocketMine Team
17 * @link http://www.pocketmine.net/
18 *
19 *
20 */
21
22declare(strict_types=1);
23
24namespace pocketmine\command\defaults;
25
30use function array_filter;
31use function array_map;
32use function count;
33use function implode;
34use function sort;
35use const SORT_STRING;
36
38
39 public function __construct(){
40 parent::__construct(
41 "list",
42 KnownTranslationFactory::pocketmine_command_list_description()
43 );
44 $this->setPermission(DefaultPermissionNames::COMMAND_LIST);
45 }
46
47 public function execute(CommandSender $sender, string $commandLabel, array $args){
48 $playerNames = array_map(function(Player $player) : string{
49 return $player->getName();
50 }, array_filter($sender->getServer()->getOnlinePlayers(), function(Player $player) use ($sender) : bool{
51 return !($sender instanceof Player) || $sender->canSee($player);
52 }));
53 sort($playerNames, SORT_STRING);
54
55 $sender->sendMessage(KnownTranslationFactory::commands_players_list((string) count($playerNames), (string) $sender->getServer()->getMaxPlayers()));
56 $sender->sendMessage(implode(", ", $playerNames));
57
58 return true;
59 }
60}
execute(CommandSender $sender, string $commandLabel, array $args)
Definition: ListCommand.php:47