128], ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'id' => Yii::t('common', 'ID'), 'nav_id' => Yii::t('common', 'NAV ID'), 'title' => Yii::t('common', 'Title'), 'url' => Yii::t('common', 'Url'), 'target' => '是否新窗口打开', 'status' => Yii::t('common', 'Status'), 'order' => Yii::t('common', 'Order'), ]; } public function attributeHints() { return [ 'url' => '格式: /site/index a=1&b=2' ]; } public function behaviors() { return [ 'positionBehavior' => [ 'class' => PositionBehavior::className(), 'positionAttribute' => 'order', 'groupAttributes' => [ 'nav_id' ], ], ]; } public function getNav() { return $this->hasOne(Nav::className(), ['id' => 'nav_id']); } }