1 | <?php |
||
11 | class SimpleSlidePresenter implements SlidePresenter { |
||
12 | |||
13 | private $parameters; |
||
14 | |||
15 | 3 | public function __construct( array $parameters ) { |
|
16 | 3 | $this->parameters = $parameters; |
|
17 | 3 | } |
|
18 | |||
19 | 2 | public function getText( Subject $subject ): string { |
|
22 | |||
23 | 2 | private function getDisplayValues( Subject $subject ) { |
|
32 | |||
33 | 2 | private function isHiddenPrintRequest( PrintRequest $pr ) { |
|
36 | |||
37 | 2 | private function getDisplayValue( PrintRequest $pr, \SMWDataItem $dataItem ) { |
|
47 | |||
48 | 2 | private function dataItemToText( \SMWDataItem $dataItem ): string { |
|
51 | |||
52 | } |
||
53 |