| 1 | <?php | ||
| 7 | class PopupContent { | ||
| 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 bold( string $html ): string { | ||
| 41 | |||
| 42 | 	private function shouldDisplayValue( string $name, array $coordinateFields ): bool { | ||
| 53 | |||
| 54 | } | ||
| 55 |