1 | <?php |
||
77 | class BaseObject implements Configurable |
||
78 | { |
||
79 | /** |
||
80 | * Returns the fully qualified name of this class. |
||
81 | * @return string the fully qualified name of this class. |
||
82 | */ |
||
83 | 961 | public static function className() |
|
84 | { |
||
85 | 961 | return get_called_class(); |
|
86 | } |
||
87 | |||
88 | /** |
||
89 | * Constructor. |
||
90 | * The default implementation does two things: |
||
91 | * |
||
92 | * - Initializes the object with the given configuration `$config`. |
||
93 | * - Call [[init()]]. |
||
94 | * |
||
95 | * If this method is overridden in a child class, it is recommended that |
||
96 | * |
||
97 | * - the last parameter of the constructor is a configuration array, like `$config` here. |
||
98 | * - call the parent implementation at the end of the constructor. |
||
99 | * |
||
100 | * @param array $config name-value pairs that will be used to initialize the object properties |
||
101 | */ |
||
102 | 3323 | public function __construct($config = []) |
|
103 | { |
||
104 | 3323 | if (!empty($config)) { |
|
105 | 3087 | Yii::configure($this, $config); |
|
106 | } |
||
107 | 3323 | $this->init(); |
|
108 | 3318 | } |
|
109 | |||
110 | /** |
||
111 | * Initializes the object. |
||
112 | * This method is invoked at the end of the constructor after the object is initialized with the |
||
113 | * given configuration. |
||
114 | */ |
||
115 | 3152 | public function init() |
|
118 | |||
119 | /** |
||
120 | * Returns the value of an object property. |
||
121 | * |
||
122 | * Do not call this method directly as it is a PHP magic method that |
||
123 | * will be implicitly called when executing `$value = $object->property;`. |
||
124 | * @param string $name the property name |
||
125 | * @return mixed the property value |
||
126 | * @throws UnknownPropertyException if the property is not defined |
||
127 | * @throws InvalidCallException if the property is write-only |
||
128 | * @see __set() |
||
129 | */ |
||
130 | 61 | public function __get($name) |
|
131 | { |
||
132 | 61 | $getter = 'get' . $name; |
|
133 | 61 | if (method_exists($this, $getter)) { |
|
134 | 60 | return $this->$getter(); |
|
135 | 2 | } elseif (method_exists($this, 'set' . $name)) { |
|
136 | 1 | throw new InvalidCallException('Getting write-only property: ' . get_class($this) . '::' . $name); |
|
137 | } |
||
138 | |||
139 | 1 | throw new UnknownPropertyException('Getting unknown property: ' . get_class($this) . '::' . $name); |
|
140 | } |
||
141 | |||
142 | /** |
||
143 | * Sets value of an object property. |
||
144 | * |
||
145 | * Do not call this method directly as it is a PHP magic method that |
||
146 | * will be implicitly called when executing `$object->property = $value;`. |
||
147 | * @param string $name the property name or the event name |
||
148 | * @param mixed $value the property value |
||
149 | * @throws UnknownPropertyException if the property is not defined |
||
150 | * @throws InvalidCallException if the property is read-only |
||
151 | * @see __get() |
||
152 | */ |
||
153 | 31 | public function __set($name, $value) |
|
164 | |||
165 | /** |
||
166 | * Checks if a property is set, i.e. defined and not null. |
||
167 | * |
||
168 | * Do not call this method directly as it is a PHP magic method that |
||
169 | * will be implicitly called when executing `isset($object->property)`. |
||
170 | * |
||
171 | * Note that if the property is not defined, false will be returned. |
||
172 | * @param string $name the property name or the event name |
||
173 | * @return bool whether the named property is set (not null). |
||
174 | * @see http://php.net/manual/en/function.isset.php |
||
175 | */ |
||
176 | 2 | public function __isset($name) |
|
177 | { |
||
178 | 2 | $getter = 'get' . $name; |
|
179 | 2 | if (method_exists($this, $getter)) { |
|
180 | 2 | return $this->$getter() !== null; |
|
181 | } |
||
182 | |||
183 | 1 | return false; |
|
184 | } |
||
185 | |||
186 | /** |
||
187 | * Sets an object property to null. |
||
188 | * |
||
189 | * Do not call this method directly as it is a PHP magic method that |
||
190 | * will be implicitly called when executing `unset($object->property)`. |
||
191 | * |
||
192 | * Note that if the property is not defined, this method will do nothing. |
||
193 | * If the property is read-only, it will throw an exception. |
||
194 | * @param string $name the property name |
||
195 | * @throws InvalidCallException if the property is read only. |
||
196 | * @see http://php.net/manual/en/function.unset.php |
||
197 | */ |
||
198 | 2 | public function __unset($name) |
|
207 | |||
208 | /** |
||
209 | * Calls the named method which is not a class method. |
||
210 | * |
||
211 | * Do not call this method directly as it is a PHP magic method that |
||
212 | * will be implicitly called when an unknown method is being invoked. |
||
213 | * @param string $name the method name |
||
214 | * @param array $params method parameters |
||
215 | * @throws UnknownMethodException when calling unknown method |
||
216 | * @return mixed the method return value |
||
217 | */ |
||
218 | 1 | public function __call($name, $params) |
|
222 | |||
223 | /** |
||
224 | * Returns a value indicating whether a property is defined. |
||
225 | * A property is defined if: |
||
226 | * |
||
227 | * - the class has a getter or setter method associated with the specified name |
||
228 | * (in this case, property name is case-insensitive); |
||
229 | * - the class has a member variable with the specified name (when `$checkVars` is true); |
||
230 | * |
||
231 | * @param string $name the property name |
||
232 | * @param bool $checkVars whether to treat member variables as properties |
||
233 | * @return bool whether the property is defined |
||
234 | * @see canGetProperty() |
||
235 | * @see canSetProperty() |
||
236 | */ |
||
237 | 1 | public function hasProperty($name, $checkVars = true) |
|
241 | |||
242 | /** |
||
243 | * Returns a value indicating whether a property can be read. |
||
244 | * A property is readable if: |
||
245 | * |
||
246 | * - the class has a getter method associated with the specified name |
||
247 | * (in this case, property name is case-insensitive); |
||
248 | * - the class has a member variable with the specified name (when `$checkVars` is true); |
||
249 | * |
||
250 | * @param string $name the property name |
||
251 | * @param bool $checkVars whether to treat member variables as properties |
||
252 | * @return bool whether the property can be read |
||
253 | * @see canSetProperty() |
||
254 | */ |
||
255 | 7 | public function canGetProperty($name, $checkVars = true) |
|
259 | |||
260 | /** |
||
261 | * Returns a value indicating whether a property can be set. |
||
262 | * A property is writable if: |
||
263 | * |
||
264 | * - the class has a setter method associated with the specified name |
||
265 | * (in this case, property name is case-insensitive); |
||
266 | * - the class has a member variable with the specified name (when `$checkVars` is true); |
||
267 | * |
||
268 | * @param string $name the property name |
||
269 | * @param bool $checkVars whether to treat member variables as properties |
||
270 | * @return bool whether the property can be written |
||
271 | * @see canGetProperty() |
||
272 | */ |
||
273 | 5 | public function canSetProperty($name, $checkVars = true) |
|
277 | |||
278 | /** |
||
279 | * Returns a value indicating whether a method is defined. |
||
280 | * |
||
281 | * The default implementation is a call to php function `method_exists()`. |
||
282 | * You may override this method when you implemented the php magic method `__call()`. |
||
283 | * @param string $name the method name |
||
284 | * @return bool whether the method is defined |
||
285 | */ |
||
286 | 10 | public function hasMethod($name) |
|
290 | } |
||
291 |