blob: f4e9572bca2081cb41ced6ceabea68c8975da3fb (
plain)
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
|
<?php
namespace SSRS\Object;
class Properties {
protected $_properties = array();
public function __construct($properties = array()) {
$this->addProperties($properties);
}
public function __get($name) {
return $this->getProperty($name);
}
/**
*
* @param array $properties
*/
public function addProperties(array $properties) {
foreach ($properties AS $key => $value) {
if (is_object($value) && isset($value->Name)) {
$key = $value->Name;
$value = isset($value->Value) ? $value->Value : null;
}
$this->addProperty($key, $value);
}
}
/**
*
* @param string $key
* @param mixed $value
* @return \SSRS_Object_Properties
*/
public function addProperty($key, $value) {
$this->_properties[$key] = $value;
return $this;
}
/**
*
* @return array
*/
public function getProperties() {
return $this->_properties;
}
/**
*
* @param string $key
* @return mixed
*/
public function getProperty($key) {
return array_key_exists($key, $this->_properties) ? $this->_properties[$key] : null;
}
}
|