src/eXpansion/Framework/AdminGroups/Plugins/GroupsPlugin.php 1 location
|
@@ 54-61 (lines=8) @@
|
| 51 |
|
/** |
| 52 |
|
* @inheritdoc |
| 53 |
|
*/ |
| 54 |
|
public function setStatus($status) |
| 55 |
|
{ |
| 56 |
|
if ($status && !empty($this->playerStorage->getOnline())) { |
| 57 |
|
foreach ($this->playerStorage->getOnline() as $player) { |
| 58 |
|
$this->onPlayerConnect($player); |
| 59 |
|
} |
| 60 |
|
} |
| 61 |
|
} |
| 62 |
|
|
| 63 |
|
/** |
| 64 |
|
* @inheritdoc |
src/eXpansion/Framework/Core/Plugins/UserGroups/AbstractUserGroupPlugin.php 1 location
|
@@ 34-41 (lines=8) @@
|
| 31 |
|
/** |
| 32 |
|
* @inheritdoc |
| 33 |
|
*/ |
| 34 |
|
public function setStatus($status) |
| 35 |
|
{ |
| 36 |
|
if ($status && !empty($this->playerStorage->getOnline())) { |
| 37 |
|
foreach ($this->playerStorage->getOnline() as $player) { |
| 38 |
|
$this->onPlayerConnect($player); |
| 39 |
|
} |
| 40 |
|
} |
| 41 |
|
} |
| 42 |
|
|
| 43 |
|
/** |
| 44 |
|
* @inheritdoc |