-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathObject.php
52 lines (50 loc) · 1.52 KB
/
Object.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/**
* Created by PhpStorm.
* User: daniil
* Date: 30.06.16
* Time: 12:31
*/
namespace andkon\yii2kladr;
/**
* Объект КЛАДР
*/
class Object
{
/** @var int Идентификатор объекта */
private $id;
/** @var string Название объекта */
private $name;
/** @var int Почтовый индекс объекта */
private $zip;
/** @var string Тип объекта полностью (область, район) */
private $type;
/** @var string Тип объекта коротко (обл, р-н) */
private $typeShort;
/** @var string Тип объекта из перечисления ObjectType */
private $okato;
/** @var string ОКАТО объекта */
private $contentType;
/** @var array Массив родительских объектов */
private $arParents;
s
/**
* @param $obObject
*/
public function __construct($obObject)
{
$this->id = $obObject->id;
$this->name = $obObject->name;
$this->zip = $obObject->zip;
$this->type = $obObject->type;
$this->typeShort = $obObject->typeShort;
$this->okato = $obObject->okato;
$this->contentType = $obObject->contentType;
$this->arParents = array();
if (isset($obObject->parents)) {
foreach ($obObject->parents as $obParent) {
$this->arParents[] = new Object($obParent);
}
}
}
}