start
This commit is contained in:
30
CustomDynamicModel.php
Normal file
30
CustomDynamicModel.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace dominion\amqp;
|
||||
|
||||
use Yii;
|
||||
use yii\base\DynamicModel;
|
||||
|
||||
class CustomDynamicModel extends DynamicModel
|
||||
{
|
||||
public function __get($name)
|
||||
{
|
||||
if (!$this->hasAttribute($name)) {
|
||||
$getter = 'get' . $name;
|
||||
if (method_exists($this, $getter)) {
|
||||
// read property, e.g. getName()
|
||||
return $this->$getter();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
return parent::__get($name);
|
||||
}
|
||||
|
||||
public function arrayValidate($attribute, $params)
|
||||
{
|
||||
if (!is_array($this->$attribute)) {
|
||||
$this->addError($attribute, 'Неверный формат "'.$attribute.'"');
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user