PocketMine-MP 5.35.1 git-f412a390b8f63d0311cc1d1c81046404153b8440
Loading...
Searching...
No Matches
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(string $namespace, string $name){
40 parent::__construct(
41 $namespace,
42 $name,
43 KnownTranslationFactory::pocketmine_command_list_description()
44 );
45 $this->setPermission(DefaultPermissionNames::COMMAND_LIST);
46 }
47
48 public function execute(CommandSender $sender, string $commandLabel, array $args){
49 $playerNames = array_map(function(Player $player) : string{
50 return $player->getName();
51 }, array_filter($sender->getServer()->getOnlinePlayers(), function(Player $player) use ($sender) : bool{
52 return !($sender instanceof Player) || $sender->canSee($player);
53 }));
54 sort($playerNames, SORT_STRING);
55
56 $sender->sendMessage(KnownTranslationFactory::commands_players_list((string) count($playerNames), (string) $sender->getServer()->getMaxPlayers()));
57 $sender->sendMessage(implode(", ", $playerNames));
58
59 return true;
60 }
61}
execute(CommandSender $sender, string $commandLabel, array $args)