Getter.class.php
1.87 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
namespace Cpeople\Classes\Infoblock;
class Getter extends \Cpeople\Classes\Base\Getter
{
protected $className = '\Cpeople\Classes\Infoblock\Object';
protected $total;
/**
* @static
* @return Getter
*/
static function instance()
{
return new self;
}
/**
* @return \CDBResult|\CIBlockResult|mixed|string
*/
public function getResult()
{
$element = new \CIBlockElement;
return \CIBlock::GetList(
$this->arOrder,
$this->arFilter,
false
);
}
public function get()
{
$retval = array();
$resultSet = $this->getResult();
if (isset($this->resultSetCallback))
{
$resultSet = call_user_func($this->resultSetCallback, $resultSet);
}
$key = -1;
while ($element = $resultSet->Fetch())
{
foreach ((array) $this->callbacks as $callback)
{
if ($callbackResult = call_user_func($callback, $element))
{
$element = $callbackResult;
}
}
$key = $this->hydrateById ? $element['ID'] : ++$key;
switch ($this->hydrationMode)
{
case self::HYDRATION_MODE_OBJECTS_ARRAY:
case self::HYDRATION_MODE_OBJECTS_COLLECTION:
$className = $this->className;
$retval[$key] = new $className($element);
break;
default:
$retval[$key] = $element;
break;
}
}
if ($this->hydrationMode == self::HYDRATION_MODE_OBJECTS_COLLECTION)
{
$retval = new Collection($retval);
}
return $retval;
}
}