1 | <?php |
||
7 | class StructuredPopup { |
||
8 | |||
9 | private $titleHtml; |
||
10 | private $propertyValues; |
||
11 | |||
12 | /** |
||
13 | * @param string $titleHtml |
||
14 | * @param string[] $propertyValues |
||
15 | */ |
||
16 | public function __construct( string $titleHtml, array $propertyValues ) { |
||
20 | |||
21 | public function getHtml(): string { |
||
27 | |||
28 | private function getPropertyValueList(): string { |
||
37 | |||
38 | private function stripTags( string $html ): string { |
||
41 | |||
42 | private function bold( string $html ): string { |
||
45 | |||
46 | } |
||
47 |