PocketMine-MP
5.21.2 git-a6534ecbbbcf369264567d27e5ed70f7f5be9816
Loading...
Searching...
No Matches
PlayerEditBookEvent.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
22
declare(strict_types=1);
23
24
namespace
pocketmine\event\player
;
25
26
use
pocketmine\event\Cancellable
;
27
use pocketmine\event\CancellableTrait;
28
use
pocketmine\item\WritableBookBase
;
29
use
pocketmine\player\Player
;
30
31
class
PlayerEditBookEvent
extends
PlayerEvent
implements
Cancellable
{
32
use
CancellableTrait
;
33
34
public
const
ACTION_REPLACE_PAGE = 0;
35
public
const
ACTION_ADD_PAGE = 1;
36
public
const
ACTION_DELETE_PAGE = 2;
37
public
const
ACTION_SWAP_PAGES = 3;
38
public
const
ACTION_SIGN_BOOK = 4;
39
43
public
function
__construct
(
44
Player
$player,
45
private
WritableBookBase
$oldBook,
46
private
WritableBookBase
$newBook,
47
private
int
$action,
48
private
array $modifiedPages
49
){
50
$this->player = $player;
51
}
52
56
public
function
getAction
() : int{
57
return $this->action;
58
}
59
63
public
function
getOldBook
() :
WritableBookBase
{
64
return $this->oldBook;
65
}
66
71
public
function
getNewBook
() :
WritableBookBase
{
72
return $this->newBook;
73
}
74
78
public
function
setNewBook
(
WritableBookBase
$book) : void{
79
$this->newBook = $book;
80
}
81
87
public
function
getModifiedPages
() : array{
88
return $this->modifiedPages;
89
}
90
}
pocketmine\event\player\PlayerEditBookEvent
Definition
PlayerEditBookEvent.php:31
pocketmine\event\player\PlayerEditBookEvent\__construct
__construct(Player $player, private WritableBookBase $oldBook, private WritableBookBase $newBook, private int $action, private array $modifiedPages)
Definition
PlayerEditBookEvent.php:43
pocketmine\event\player\PlayerEditBookEvent\getNewBook
getNewBook()
Definition
PlayerEditBookEvent.php:71
pocketmine\event\player\PlayerEditBookEvent\getAction
getAction()
Definition
PlayerEditBookEvent.php:56
pocketmine\event\player\PlayerEditBookEvent\setNewBook
setNewBook(WritableBookBase $book)
Definition
PlayerEditBookEvent.php:78
pocketmine\event\player\PlayerEditBookEvent\getModifiedPages
getModifiedPages()
Definition
PlayerEditBookEvent.php:87
pocketmine\event\player\PlayerEditBookEvent\getOldBook
getOldBook()
Definition
PlayerEditBookEvent.php:63
pocketmine\event\player\PlayerEvent
Definition
PlayerEvent.php:32
pocketmine\item\WritableBookBase
Definition
WritableBookBase.php:36
pocketmine\player\Player
Definition
Player.php:170
pocketmine\event\Cancellable
Definition
Cancellable.php:34
pocketmine\event\player
Definition
PlayerBedEnterEvent.php:24
pocketmine\event\CancellableTrait
trait CancellableTrait
Definition
CancellableTrait.php:34
src
event
player
PlayerEditBookEvent.php
Generated by
1.12.0