есть класс User в котором есть метод
public function attributeLabels()
{
return $this->commonAttributesLabel() + [
'username' => $this->t('', 'Логин'),
'first_name' => $this->t('', 'Имя'),
'last_name' => $this->t('', 'Фамилия'),
'second_name' => $this->t('', 'Отчество'),
];
}
Как мне из вьюхи получить допустим Имя?
Дополняю:
у меня есть
object(stdClass)[593]
public 'user' =>
object(stdClass)[594]
public 'type' => string 'class' (length=5)
public 'methodTitle' => string 'modelTitle' (length=10)
public 'class' => string '\gm\models\users\tables\Users' (length=30)
public 'fields' =>
object(stdClass)[595]
public 'username' => string 'attribute' (length=9)
public 'first_name' => string 'attribute' (length=9)
public 'last_name' => string 'attribute' (length=9)
public 'second_name' => string 'attribute' (length=9)
а мне необходимо в поле вывести
$user['first_name'] = Имя;