1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
staticmapresult.php
См. документацию.
1<?php
2
3namespace Bitrix\Location\StaticMap;
4
5use Bitrix\Main\Result;
6
7final class StaticMapResult extends Result
8{
9 private ?string $path = null;
10 private ?string $content = null;
11 private ?string $mimeType = null;
12
13 public function getPath(): ?string
14 {
15 return $this->path;
16 }
17
18 public function setPath(string $path): StaticMapResult
19 {
20 $this->path = $path;
21
22 return $this;
23 }
24
25 public function getContent(): ?string
26 {
27 return $this->content;
28 }
29
30 public function setContent(string $content): StaticMapResult
31 {
32 $this->content = $content;
33
34 return $this;
35 }
36
37 public function getMimeType(): ?string
38 {
39 return $this->mimeType;
40 }
41
42 public function setMimeType(string $mimeType): StaticMapResult
43 {
44 $this->mimeType = $mimeType;
45
46 return $this;
47 }
48}
$path
Определения access_edit.php:21
setMimeType(string $mimeType)
Определения staticmapresult.php:42
setContent(string $content)
Определения staticmapresult.php:30
$content
Определения commerceml.php:144
path
Определения template_copy.php:201