lajax / yii2-translate-manager

Translation Manager
MIT License
227 stars 89 forks source link

ActiveRecord with ->asArray not working #146

Open strtob opened 2 years ago

strtob commented 2 years ago

Hi,

What a great extensions, thanks a lot!

fyi

this works:

\yii\helpers\ArrayHelper::map(\app\models\BasisAssetType::find()->orderBy('id')->all(), 'id', 'name')

this not:

\yii\helpers\ArrayHelper::map(\app\models\BasisAssetType::find()->orderBy('id')->asArray()->all(), 'id', 'name')

No translation happens - I use the behaviour...

BR, Tobi